please any one help me how to solve this problem
php_value magic_quotes_gpc 0
how toadd in .htaccess root
php_value magic_quotes_gpc 0
how toadd in .htaccess root
ini_set( 'magic_quotes_gpc', 0 );
if ( in_array( strtolower( ini_get( 'magic_quotes_gpc' ) ), array( '1', 'on' ) ) )
{
$_POST = array_map( 'stripslashes', $_POST );
$_GET = array_map( 'stripslashes', $_GET );
$_COOKIE = array_map( 'stripslashes', $_COOKIE );
}
ini_set( 'magic_quotes_gpc', 0 );
if ( in_array( strtolower( ini_get( 'magic_quotes_gpc' ) ), array( '1', 'on' ) ) )
{
$_POST = array_map( 'stripslashes', $_POST );
$_GET = array_map( 'stripslashes', $_GET );
$_COOKIE = array_map( 'stripslashes', $_COOKIE );
}
Comment