in reply to Errors in my (simple?) CGI Script!
Or you could use $!:# Assuming is set in bush.conf unless(open(FILE,"<$random_file")) { # Handle it gracefully } my @lines = <FILE>; close(FILE);
Note that I have added a < to implicitly imply that I am opening the file. You might also want to consider the three argument form of open(). See the manpage for details.open(FILE,"<$random_file") || die "Could not open file",$!;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Errors in my (simple?) CGI Script!
by shotgunefx (Parson) on Mar 09, 2002 at 21:46 UTC | |
by simon.proctor (Vicar) on Mar 09, 2002 at 22:22 UTC | |
by theguvnor (Chaplain) on Mar 10, 2002 at 01:19 UTC | |
by simon.proctor (Vicar) on Mar 10, 2002 at 16:11 UTC | |
| |
by Juerd (Abbot) on Mar 09, 2002 at 22:36 UTC | |
by rob_au (Abbot) on Mar 10, 2002 at 01:24 UTC | |
by no_slogan (Deacon) on Mar 10, 2002 at 02:24 UTC | |
by Juerd (Abbot) on Mar 10, 2002 at 09:33 UTC | |
by shotgunefx (Parson) on Mar 10, 2002 at 01:44 UTC | |
Re: Re: Errors in my (simple?) CGI Script!
by impossiblerobot (Deacon) on Mar 09, 2002 at 21:52 UTC | |
by gellyfish (Monsignor) on Mar 09, 2002 at 22:04 UTC | |
by Dog and Pony (Priest) on Mar 09, 2002 at 22:10 UTC |