hopefulcd has asked for the wisdom of the Perl Monks concerning the following question:
If anyone knows what could be the cause of these errors, It would be greatly appreciated.#!/usr/bin/perl -wT use strict; use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); print header; print start_html("Environment"); foreach my $key (sort(keys(%ENV))) { print "$key = $ENV{$key}<br>\n"; } my $value = cookie('koh'); print "\n<br>\nThe cookie <b>koh</b> contains <b>$value</b>\n<br><br>\ +n"; print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Apache / Perl help...
by moritz (Cardinal) on Jul 01, 2008 at 23:17 UTC | |
|
Re: Apache / Perl help...
by jethro (Monsignor) on Jul 02, 2008 at 03:21 UTC | |
|
Re: Apache / Perl help...
by pjotrik (Friar) on Jul 02, 2008 at 07:44 UTC |