Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing variables between flash5 and php4

Status
Not open for further replies.

bobgg

Programmer
Jul 1, 2002
7
0
0
GB
Hi everyone, can somebody please help me in achieving the following task. I have got a variable in my flash5 program, trying to pass it to my PHP script using the code below:-

loadVariablesNum("check.php",_root,"POST")

my textbox in flash has got a variable called check attached to it, but I am still unable to get it working. Also can someone please tell me the difference between loadVariablesNum and loadVariables. when to use either.

thanks for all your help..
BOB.B
 
Try this instead:

loadVariables("check.php","","POST");

The difference is that loadVariables() sends/loads variables on the current timeline (as above) or clips on the _root level if specified while loadVariablesNum() sends/loads to a particular level when several .swfs are loaded into one movie.



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top