in reply to Re: (ar0n) Re: Loading $_ as checkbox value when $_ has double quotes in its value
in thread Loading $_ as checkbox value when $_ has double quotes in its value
In that case don't make $_ do double-duty. Instead, try
my $dequoted = $_; $dequoted =~ s/"/"/g; print qq|<input type="checkbox" name="box$post_number" value="$dequote +d">|;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(duplicate)Re: Loading $_ as checkbox value when $_ has double quotes in its value (delete)
by hakkr (Chaplain) on Dec 04, 2001 at 15:59 UTC |