i'm looking for help with passing varriables from falsh, first to php, and then having php writer them to a txt file. the only code i've found so far is:
<?php
$file = "your/text/file.txt";
$fp = fopen($file, "w+");
foreach($HTTP_POST_VARS as $temp){
fputs($fp, "$temp\r\n"); //change to \n for *nix \r for mac
}
fclose($fp);
?>
but i dont know if it'll work, how to call in from flash, how to send it variables, or where to put the script. any help would be much appreciated.
JBSil