in reply to Why does CGI::query_string make semicolons the rule, not the exception?
...
Semicolon-delimited query strings are always accepted, but will not be emitted by self_url() and query_string() unless the -newstyle_urls pragma is specified.
This became the default in version 2.64.
Check the docs! You can specify your preference like this: use CGI qw/param -oldstyle_urls/;
-newstyle_urls
Separate the name=value pairs in CGI parameter query strings with semicolons rather than ampersands. For example:
-oldstyle_urls
Separate the name=value pairs in CGI parameter query strings with ampersands rather than semicolons. This is no longer the default.
blokhead
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Why does CGI::query_string make semicolons the rule, not the exception?
by hardburn (Abbot) on Apr 13, 2004 at 14:52 UTC |