标签: php forms escaping apostrophe
我有一个表单,一个输入将包含值:Where something = 'something'。
Where something = 'something'
当我回复$_GET(或$_POST)时,它会将其替换为Where something = \'something\'
$_GET
$_POST
Where something = \'something\'
有什么建议吗?
我认为,当我回复它时,urlencode会进入表格并urldecode,但是我无法弄清楚我哪里出错了。谢谢!
urlencode
urldecode
答案 0 :(得分:4)
您需要在php.ini中关闭magic quotes。