View Single Post
Old 04-03-2011, 01:36 PM   PM User | #21
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,496
Thanks: 44
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
Quote:
Originally Posted by Ugogrl View Post
Okay actionscriptcode .... lost me

with the old script I put [php] and the page in the root .. and the flash in the folder ... and it worked ... you made changes the first time ... it worked ... it just didn't collect IP ISP ... info I wanted ... that was all that was wrong ...

then everyone said the Vars thing wasn't good ... but I don't know if the flash file sees Var ... or what you have all changed it to ???
Actionscript is the code that runs inside the flash animation/form.

Changing the $HTTP_POST_VARS to $_POST will have no effect on the working of the php script. The php script works independently of the flash form. The flash form sends the data TO the php script which then does its own processing.
__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.
tangoforce is offline   Reply With Quote