Why does this happen?
the value is submited via a form, the forms input for $hname is...
"Joe" Person
The script submited to has this code..
$hname = str_replace("\"", "", "$hname");
$hname = str_replace("\'", "", "$hname");
echo "$hname";
The script's output is this....
\Joe\ Person
How can I remove " or ' from form inputs without the \ 's showing up?