I am usingas my reference to output data from my mysql table. How would I call this var in flash?PHP Code:data1 = $row->data1
Printable View
I am usingas my reference to output data from my mysql table. How would I call this var in flash?PHP Code:data1 = $row->data1
You have to print the variable as if you were printing it to the page.
To pass a single variable:
If you want to pass multiple variables, do this:PHP Code:print "myVariable=myValue";
PHP Code:print "&myVariable1=myValue1&myVariable2=myValue2&myVariable3=myValue3";