in reply to HTML::ENTITIES for URL encoding
My best guess is that should have been: 'http://google.com/">'
or perhaps you are intentionally looking to output: 'http://google.com/>"'?
Regardless it looks like your problem is that you need to turn on "use strict;". The you'll see that $self->query does not exist! Try instead "my( $query ) = shift;" and use "my @params = $query->param();" (Notice no arguments) to fetch the list of parameters.
If you need to filter to just parameter names containing special chars filter using "next".
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTML::ENTITIES for URL encoding
by aakashmgupta (Initiate) on Mar 05, 2015 at 03:34 UTC | |
by cheako (Beadle) on Mar 05, 2015 at 04:00 UTC | |
by cheako (Beadle) on Mar 05, 2015 at 04:02 UTC |