in reply to How can I pass the URL of the page I am on?
use URI::Escape; my $url = $query->self_url; $url = uri_escape($url); # or $query->url; it depends.. print qq{<a href="/path/to/new/location.pl?URL=$url">new location</a>} +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Answer: How can I pass the URL of the page I am on?
by merlyn (Sage) on Oct 10, 2000 at 22:19 UTC |