Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This works on the developement server but not the production server, which are supposedly setup exactly the same. I've double checked file permissions to make sure Perl can write to the file. The only thing I can think of is that there is a problem with the code. Any ideas??open(DATABASE, ">>/http01/cgi-bin/form/db/db.txt"); foreach $single_value (@form_values) { print DATABASE "$single_value|"; } close(DATABASE);
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: appending a file
by suaveant (Parson) on Sep 27, 2001 at 23:13 UTC | |
|
Re: appending a file
by CubicSpline (Friar) on Sep 27, 2001 at 23:11 UTC | |
|
Re: appending a file
by arturo (Vicar) on Sep 27, 2001 at 23:17 UTC | |
|
Re: appending a file
by mandog (Curate) on Sep 27, 2001 at 23:18 UTC |