Elliot Holden <[EMAIL PROTECTED]> asked: > okay this may seem like a simple problem but here it goes: [...] > open(OUTFILE, ">>survey.txt"); [...]
Your web server may not have permission to create the file in question. Always check return codes! open(OUTFILE, ">>survey.txt") or die "Could not open file: $!"; HTH, Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>