How can I get the length of the amount of data that a php script has pushed as a result of a loadvariables?
Hello,
If you're using MySQL to pull your data from a table - then use
mysql_num_rows() to get the total of records and store it in a variable(a).
Then append that variable at the beginning of your output in PHP(b).
Then you can use that variable in Flash for looping or whatever(c).
(a) $num = mysql_num_rows(YOUR_QUERY);
(b) echo "num=".$num."&data1=blah&data2=more blah"; // etc
Hope that helps!