pdaggett has asked for the wisdom of the Perl Monks concerning the following question:
Edited by Corion: Added <CODE> tags.
Why would this error be showing in the error log on this call#!/usr/bin/perl -w use CGI qw(:standard); use strict; print header; print start_html("ERROR LOG"); my $logfile = "errort.log"; open(FILEHANDLE ,"$logfile"); my $temp; while (<FILEHANDLE>) { $temp = $temp . $_ . "<br>"; } print "$temp";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Error/Warnings
by SparkeyG (Curate) on Feb 24, 2001 at 01:23 UTC | |
|
Re: Error/Warnings
by dws (Chancellor) on Feb 24, 2001 at 01:30 UTC | |
|
Re: Error/Warnings
by MeowChow (Vicar) on Feb 24, 2001 at 02:34 UTC | |
|
Re: Error/Warnings
by enoch (Chaplain) on Feb 24, 2001 at 01:36 UTC | |
by PsychoSpunk (Hermit) on Feb 24, 2001 at 01:43 UTC | |
|
Re: Error/Warnings
by PsychoSpunk (Hermit) on Feb 24, 2001 at 01:26 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |