How do I know if magic quotes is switched on?
get_magic_quotes_gpc which will return 1 if the setting is on and 0 if off.
Use it in an if clause to determine what to do with data before entering in a database, like this:
<?php
if (!get_magic_quotes_gpc()) {
$mydata = addslashes($mydata);
} else {
//do nothing: slashes added automatically
}
?>
Comment on this Question and Answer >>>
ASK A QUESTION
More forms PHP Questions
I currently use this form on my site: NameHow do I remove HTML tags from a string?
How do I remove escape characters from data?
Hello: I receive two error messages when I try to submit a form. The messages are: Warning: mysqli_query() [function.mysqli-query]: Empty query in /home/content/PRIVATE/html/riskyjobs_riskybusiness_Database_TableSetup_riskyjobs_Table_Chapter9_Page5
How do I escape data that is going into a database?
