Check whether magic_quotes_gpc is turned on
In the previous post I have mentioned about magic_quotes_gpc. But didn\'t mention on how to check whether this feature is turned on or off. There is two ways to check whether this feature is turned on or off.
Check in the php.ini file whether the feature is set to \'on\' or \'off\'
Or if you don\'t have privilege to view the php.ini file, then you can check it using php code such as below:
if (get_magic_quotes_gpc()) {
echo \"the get_magic_quotes_gpc() is turned on\";
}
else
{
echo \"the get_magic_quotes_gpc() is turned off\";
}