when running the the script below from the unix (mac osx) command line the "survey.txt" file is created and "this a test!!!" is written to the file. But when running it from a browser the file is Not created and "Browser test" is displayed in the browser. So in essennce when running from a browser the file creation section of the script is being skipped over. Please, please, please, why is this happening, somebody? I've tried it on diffferent browsers - Mozilla, IE.
open(OUTFILE, ">>survey.txt"); print OUTFILE "this is a test!!!\n"; close(OUTFILE); print "<html>Browser test</html>\n";
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>