in reply to Re^3: Semicolons in webforms
in thread Semicolons in webforms
hoping that it would not see the semicolon as a delimiter, but that didn't work. Here is a dump of the CGI object:use CGI qw(-oldstyle_urls);
The semicolon is located in the tag testproblem:$VAR1 = bless( { 'strerrortext' => [ 'strerror' ], 'strxmltext' => [ '<testproblem>ti' ], '.parameters' => [ 'strxmltext', 'me</testproblem>', 'strerrortext' ], 'me</testproblem>' => [ '' ], '.charset' => 'ISO-8859-1', '.fieldnames' => {}, 'escape' => 1 }, 'CGI' );
As you can see from the parameter list, CGI is interpreting the text after the semicolon as a parameter. Any other thoughts?<testproblem>ti;me</testproblem>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Semicolons in webforms
by ysth (Canon) on Dec 31, 2007 at 21:55 UTC | |
|
Re^5: Semicolons in webforms
by derby (Abbot) on Jan 07, 2008 at 20:20 UTC |