i've been all over http://www.php.net
i've read the relevant sections in all my php and mysql books.
but...
i find contradictions, so...
i was wondering if someone here could straighten this out for me please?
with get_magic_quotes_gpc() == 1, no need to addslashes from gpc, right?
with get_magic_quotes_runtime() == 0, need to addslashes during runtime, right?
what about stripslashes?
assuming i addslashes (or magic_quotes adds the slashes), do i need to stripslashes after taking info out of mysql database?
i see that i need to stripslashes if taking in form data only to spit it back to the screen, no mysql involved.
also, are the slashes actually stored in mysql database?
:: too many sources saying different things.