textarea 帖子在有或没有“\”的情况下得到不同的结果?
相同的代码在不同的电脑上运行,得到不同的结果
我的系统是xp,我发布textarea并打印它,结果有“\”befror',但我在其他人的电脑上运行它,结果没有返回“\”。
这种不同的结果导致当我插入mysql时,当sql没有“\”时返回错误
为什么会发生这种情况?怎么修 ?
<pre>
<?php
print_r($_POST);
?>
</pre>
<form method="post">
<textarea name="content" id="" cols="30" rows="10">This is kate's book</textarea>
<input type="submit" />
</form>
在我的电脑中,获取:
this is kate\'s book
在其他情况下,得到:
this is kate's book
添加htaccess就可以了
php_flag magic_quotes_gpc 1