in reply to CGI::Vars weirdness
update: see this:
entering a + there in any conforming browser should give a + as the result.#!/usr/bin/perl -w use strict; use CGI; print CGI->header(); print q(<form><input type="text" name="stuff"><input type="submit"></f +orm>); my %vars = CGI->new->Vars(); print "$_ => '$vars{$_}'<br>" for sort keys %vars;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI::Vars weirdness
by Anonymous Monk on Apr 04, 2008 at 08:00 UTC | |
by Corion (Patriarch) on Apr 04, 2008 at 08:27 UTC |