when ever I submit a form message or something and I print what I sent like
echo $_POST[blah];
If it has a ' in it, why does it escape it like \' how can I get rid of this?!
Hi,
The reason could be that magic qoutes are switched on in your php.ini file. Switch it off and rerun the script.
escaping is generally good though. I'm not sure why it's doing it on the form results, but when you want to echo it, just use the stripslashes() function to strip the escape slashes.
echo stripslashes($_POST['blah']);
Craz