in reply to uri_unescape not printing desired results
print uri_unescape($page);
Then it will probably still not work, because if you were to add "use warnings" to the top of your script you would get a warning such as:
Undefined subroutine &main::uri_unescape called at ...
Which in turn could be corrected by adding:
to the top of the script as well.use URI::Escape;
|
|---|