PHP seems to automatically be escaping quotes on my $_POST variables.
magic_quotes_gpc is set to On in your php.ini file. You can use stripslashes()to undo its effect or alter this behavior on a script-by-script basis using ini_set().

Larry


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to