########################## use CGI; $q = new CGI;
my $field = $q->param('field');
print qq|
$field
|;
#########################
# Lets Suppose the form Input contains the quotes in the string e.g.
$field = "This is the string "which" contains the quotes";
The script stops printing everything after first quote ("), I KNOW where the problem
is but at a loss to prevent it as I have tried all the options
Any help!!!.
thanks,
Sara.
