Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
bossche001 #1
loadvariables get length
How can I get the length of the amount of data that a php script has pushed as a result of a loadvariables?
bossche001 Guest
-
loadVariables and loadMovie
in a mc i get some variables from a db with loadVariables("order.asp?id"+id, 0, "POST"). in a root there are some textField wich I load that... -
loadvariables and external .txt
Hi all Im haveing trouble loading an external text file into a textframe from inside a movie it works perfectly when i try to use it directly... -
LoadVariables and ASP
Hi all, Hope someone can help as this is driving me nuts. I'm running IIS 5 on my XP machine and I've created a database to return basic text... -
loadVariables() problem
Hello All! I have created a navigation bar for my website and i store the urls in an external .txt file. I use the loadvariabes() statement to load... -
How to get length of string? length() problems
Simplified a bit, I'm parsing HTML documents to get sentences e.g. my $html = get($URL); # remove all HTML TAGs...blah blah blah @sentences =... -
Noelbaland #2
Re: loadvariables get length
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!
Noelbaland Guest



Reply With Quote

