// remove slashes in get post cookie data...
if ( get_magic_quotes_gpc() ) {
if(is_array($_REQUEST)) $_REQUEST=stripslashes_ws($_REQUEST);
if(is_array($_POST)) $_POST=stripslashes_ws($_POST);
if(is_array($_GET)) $_GET=stripslashes_ws($_GET);
if(is_array($_COOKIE)) $_COOKIE=stripslashes_ws($_COOKIE);
}
@set_magic_quotes_runtime(0);