;

PDA

Click to See Complete Forum and Search --> : How would I call this var in flash from php


kinitex
05-01-2003, 08:26 PM
I am using data1 = $row->data1 as my reference to output data from my mysql table. How would I call this var in flash?

Fat_N_Furry
05-01-2003, 11:46 PM
You have to print the variable as if you were printing it to the page.

To pass a single variable:

print "myVariable=myValue";

If you want to pass multiple variables, do this:

print "&myVariable1=myValue1&myVariable2=myValue2&myVariable3=myValue3";