in reply to How to get current URL with Query String
Another.
use strictures; use CGI ":standard"; use URI; my $requested = URI->new( CGI::url() ); $requested->query( $ENV{QUERY_STRING} || $ENV{REDIRECT_QUERY_STRING} ) if url_param(); print header(), start_html(), h1("OHAIURI"), blockquote($requested), end_html();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get current URL with Query String
by thewebsi (Scribe) on May 10, 2013 at 20:06 UTC | |
by techdex (Initiate) on Feb 04, 2014 at 06:26 UTC | |
by Your Mother (Archbishop) on Feb 04, 2014 at 15:30 UTC |