CGI-Minimal
view release on metacpan or search on metacpan
lib/CGI/Minimal.pod view on Meta::CPAN
$cgi->param( 'name' => 'Joe Shmoe' );
$cgi->param({ 'name' => 'Joe Shmoe', 'birth_date' => '06/25/1966' });
$cgi->param({ 'pick_list' => ['01','05','07'] });
Starting with the 1.12 version, CGI::Minimal accepts the ';' character
as a form field seperator in addition to the '&'.
IOW: a=b;c=d will decode as well as a=b&c=d in form submissions. This is
to provide SGML/XML/XHTML compatibility for those needing it. Since ';' has
always been escaped to %3e by the url_encode method, this should only affect
people who are already doing the wrong thing with their forms by
not escaping their data correctly. This is also compatible with what the CGI.pm
module does.
=back
=cut
=over 4
( run in 0.880 second using v1.01-cache-2.11-cpan-49f99fa48dc )