Hi
I have 3 simple input txt fields in my movie one for your name, email, and just a message.
Now in flash I have all on the same keyframe the 3 text fields called name, email and besttime and a button with this code on it..
ActionScript Code:
on(release){
loadVariablesNum ("try.php", 0 ,"POST");}
then I have a php file called try.php with this in it
PHP Code:
<?php
$data="test.txt";
$fp= fopen($data, "w+");
$fw= fwrite($fp,"$QUERY_STRING");
fclose($fp);
echo "status=Done"
?>
I was told that this should work fine but the thing is it doesnt seem to right anything to my txt file do i need anything else in the flash,php or even in the txt file???