I have 3 parts to the full project, one flash file, one PHP file, and a txt file that is created by the php file.
Here is the code for the php file:
for the inputs, I put 'Mike' as name and 'Hello World' as the message. When I submit this through the test flash interface, the text file comes out with this example...
and that it. Is there somthign goofy in my coding?
Thanks in advance!
Thank you!!!
Mike Kovacic
""" """
(o) (O)
\____/
Here is the code for the php file:
Code:
<?
$filename = "chat.txt";
$name = stripslashes($name);
$message = stripslashes($message);
$Created="Ecard Created on $Today";
$EcardNum = $EcardSelect;
$Text = "$name says $message";
$fp = fopen( "./txt/$filename","w");
fwrite($fp, $Text, 10000);
fclose( $fp );
?>
for the inputs, I put 'Mike' as name and 'Hello World' as the message. When I submit this through the test flash interface, the text file comes out with this example...
Code:
Mike says
and that it. Is there somthign goofy in my coding?
Thanks in advance!
Thank you!!!
Mike Kovacic
""" """
(o) (O)
\____/