in reply to Re: Best way to use escapeHTML
in thread Best way to use escapeHTML
use strict; use CGI qw(:standard escapeHTML); my $q = new CGI; my $comments = $q->escapeHTML( $q->param('comments') ) || ''; print header(); print "test: $comments";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Best way to use escapeHTML
by Anonymous Monk on Aug 08, 2011 at 22:49 UTC | |
by Anonymous Monk on Aug 08, 2011 at 23:00 UTC | |
by Anonymous Monk on Aug 08, 2011 at 23:12 UTC |