Hi, I'm not sure if I got the Meta description spot on but here's my situation:
On a contact form processor I have the following scenario
my $field_name = HTML::Entities::encode($field_name);
which is supposed to prevent users from using quotes. The problem is, when it prints the email it appears as such:
if user used a double quote it would be like for quote"s sake whereas a single prints out in the order of Tom's
Is it really all that important to eliminate quotes and if so, how do I get them back in the string for the email body. I think what I'm trying to say is how do I get the message to look like the way it was originally submitted?