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