Hi there Monks!
I am trying to use some filter from a form in my page and I've been reading about "escapeHTML". Could someone tell me what is the best way to use this module, here is how I am currently using it, but I am not really sure if its the best way, simple code sample:
#!/usr/bin/perl -w
use strict;
use CGI qw(:standard);
use vars qw($q);
my $comments = CGI::escapeHTML($q->param( 'comments' )) || '';