So you're saying that I have to turn on magic_quotes_gpc in php.ini in order for it to work? the ini_set won't work?

Leif K-Brooks wrote:

Magic_quotes has already done (or not done) its job by the time your script runs.

Doug Parker wrote:

OK - thanks. I saw that the magic_quotes_gpc is turned off by default, so I did a ini_set(magic_quotes_gpc, 1) to turn it on temporarily. I ran a get_magic_quotes_gpc() and saw that the ini_set did work, but for some reason the query still won't accept the quotes. What am i doing wrong?

thanks again, doug

Chris Shiflett wrote:

--- drparker <[EMAIL PROTECTED]> wrote:

i need to escape all my apostrophes in values submitted to a mySQL
database.

http://www.php.net/manual/en/function.addslashes.php


is there a way i can loop thru all the post variables and replace the
apostrophes?

Read about the magic_quotes setting in your php.ini.

Chris






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

Reply via email to