in reply to Re^4: Issuing a DELETE statement with DBI
in thread Issuing a DELETE statement with DBI
#!/usr/bin/perl use strict; use warnings; use CGI; my $cgi = CGI->new(); use Data::Dumper::Simple; print Dumper($cgi); my $title = $cgi->param('title'); print $title; print $/; __END__ > ./tmp.pl title=foo\;title=user\;bar= $cgi = bless( { '.parameters' => [ 'title', 'bar' ], 'bar' => [ '' ], '.charset' => 'ISO-8859-1', '.fieldnames' => {}, 'title' => [ 'foo', 'user' ], 'escape' => 1 }, 'CGI' ); foo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Issuing a DELETE statement with DBI
by eric256 (Parson) on Sep 01, 2006 at 17:51 UTC |