Turn off magic quotes in the php.ini to not have them go in, and you will most
likely get a bunch of error's, or pass what you select from the database through
the stripslashes function like:
$query = mysql_query("SELECT field FROM table;");
$array = mysql_fetch_array($query);
$array[f
When posting to a MySQL database field database record slashes are being
added to the data where there is an apostrophe. How do I either, not have
the apostrophe posted without the slash or have it not displayed when it is
being retrieved?
Thanks
V
--
PHP General Mailing List (http://www.php.n
2 matches
Mail list logo