If you do not want the following to occur in the PHP page:
Single quotes are escaped as \'
Double quotes are escaped as \"
Then the following settings can be made to prevent:
Method 1: Set in: magic_quotes_gpc = Off
Method 2: $str=strpcslashes($str)
Single quotes are escaped as \'
Double quotes are escaped as \"
Then the following settings can be made to prevent:
Method 1: Set in: magic_quotes_gpc = Off
Method 2: $str=strpcslashes($str)