Top "Magic-quotes" questions

A security process that automatically escapes incoming data to the PHP script.

PHP 5.3 automatically escapes $_GET/$_POST from form strings?

My server admin recently upgraded to PHP 5.3 and I'm getting a weird "bug" (or feature, as the PHP folks have …

php forms escaping magic-quotes
Mysql Real Escape String PHP Function Adding "\" to My Field Entry

I am submitting a form to my MySQL database using PHP. I am sending the form data through the mysql_…

php mysql magic-quotes
How can I disable PHP magic quotes at runtime?

I'm writing a set of PHP scripts that'll be run in some different setups, some of them shared hosting with …

php runtime magic-quotes
Escaping quotes in SQL

According to php.net I should use mysql_real_escape_string() and turn off magic quotes, because it's deprecated. So …

php sql mysql mysql-real-escape-string magic-quotes
What are magic quotes runtime in PHP?

I'm totally aware of the aberration of Magic Quotes in PHP, how it is evil and I avoid them like …

php magic-quotes