自动转义是为了安全,如果不要的话可以自己在提交之后再转回来~$name=str_replace("\'","'",$_GET['name']);
$name=str_replace('\"','"',$name);
echo("Hello $name");