I am using the following script trying to print my "1message" variable which is actually a dynamic textbox in flash to a .txt file by the name of 1message.txt.
It prints to the .txt file fine and works great, however it only sends the name of my variable from Flash and does not print the content of the variable.
Here is the code I am using... please don't laugh... I know nothing yet but am trying to learn. To me just getting it to not give me any error messages is an accomplishment;-)
#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
open(F,'>../1message.txt');
print F "1message=$1message";
close(F);
let me know what to do to make it read my variables content rather than the name of the variable. BTW... I am using a "post" action on a getURL for anyone who knows Flash. Regards,
TulsaJeff
It prints to the .txt file fine and works great, however it only sends the name of my variable from Flash and does not print the content of the variable.
Here is the code I am using... please don't laugh... I know nothing yet but am trying to learn. To me just getting it to not give me any error messages is an accomplishment;-)
#!/usr/local/bin/perl
print "Content-type: text/html\n\n";
open(F,'>../1message.txt');
print F "1message=$1message";
close(F);
let me know what to do to make it read my variables content rather than the name of the variable. BTW... I am using a "post" action on a getURL for anyone who knows Flash. Regards,
TulsaJeff
