I wrote a PHP script and have a slight problem with it. When I submit the form it uses, backslashes are added to my input (as in I'm becomes I\'m and "Blah" becomes \"Blah\"). How do I fix this?
Use the stripslashes() method on the variable passed through the form.
HTH.
geoff