Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl use DBI; use CGI; require "iniappresp.pl"; $| = 1; $debug = 2; $query = new CGI; $startdate = $query->param('date'); $location = $query->param('location'); #$app = $query->param('application'); $begin = $query->param('start'); $stop = $query->param('end'); $begin = '0'.$begin if($begin < 10); $stop = '0'.$stop if($stop < 10); $startdate =~ m%(.*)/(.*)/(.*)%; $month = $1; $day = $2; $year = $3;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid) Re: CGI POST vs. GET problem
by Ovid (Cardinal) on Jun 06, 2001 at 04:12 UTC | |
|
Re: CGI POST vs. GET problem
by Trimbach (Curate) on Jun 06, 2001 at 06:33 UTC | |
|
Re: CGI POST vs. GET problem
by dws (Chancellor) on Jun 06, 2001 at 03:40 UTC | |
by Anonymous Monk on Jun 06, 2001 at 17:05 UTC | |
|
Re: CGI POST vs. GET problem
by olly (Scribe) on Jun 06, 2001 at 03:21 UTC | |
|
Re: CGI POST vs. GET problem
by shotgunefx (Parson) on Jun 06, 2001 at 08:45 UTC | |
by Xxaxx (Monk) on Jun 06, 2001 at 13:06 UTC | |
by shotgunefx (Parson) on Jun 06, 2001 at 13:18 UTC |