in reply to Preventing changes on the
#/usr/bin/perl use CGI qw(:standard); use strict; my $q=new CGI; # Check values from the query string unless ($q->param('user') eq 'foolish' && $q->param('id') eq '2') { print $q->header, $q->start_html(-title=>'Page not found'); print h2("This page was not found"), $q->end_html; exit; } # Real page code follows
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Preventing changes on the
by dmmiller2k (Chaplain) on Feb 19, 2002 at 02:24 UTC | |
by Speedy (Monk) on Feb 20, 2002 at 15:52 UTC |