parallelgoon has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl -wT use strict; use CGI 'param'; my $outfile = param('outfile'); open(OUT,">>$outfile") || die; print OUT "blah blah blah"; close(OUT);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Interpolation problem?
by ViceRaid (Chaplain) on Mar 23, 2004 at 10:46 UTC | |
|
Re: Interpolation problem?
by tinita (Parson) on Mar 23, 2004 at 14:02 UTC |