0

i need help on getting data from my database using php on actionscript?

any advice on how i can use loadVariables() or getURL()

i know PHP but im new with actionscript.

Rain Ramos
  • 41
  • 3

1 Answers1

0

Here's the process:

  • Use loadVariables to call the PHP script:

    • loadVariables("params.php", target_mc);
  • URL encode the output from the database:

    • echo urlencode($resultset)
Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265