这是因为PHP环境是自动打开转义的,可以再C:/WINDOWS/PHP.INI中查看
当magic_quotes_gpc = on 时将自动进行转义(默认是on) 可在程序中用get_magic_quotes_gpc()检查他的状态
程序为:
if (get_magic_quotes_gpc()==1){
$name=stripcslashes($_POST["name"]);
}else{
$name=$_POST["name"];
}
当magic_quotes_gpc = on 时将自动进行转义(默认是on) 可在程序中用get_magic_quotes_gpc()检查他的状态
程序为:
if (get_magic_quotes_gpc()==1){
$name=stripcslashes($_POST["name"]);
}else{
$name=$_POST["name"];
}