-1

可能重复:
在php中转义双引号

在我的数据库中,记录就像this is php's code and "called" a special code. 当我尝试将此文本从 mysql 数据库获取到我的 php 页面时,它显示为this is php's code and
我的代码很简单:

$all_gallery_ph_sql = mysql_query("SELECT `path`,`name`,`title`,`details` FROM `gallery` WHERE `status`='1' AND `type`='myreference' AND `enable_status`='1' LIMIT {$startpoint} ,{$limit}");                                       
echo $res['details'];

在此处输入图像描述 那么如何解决这个问题。请帮我。谢谢。

4

1 回答 1

2

您可以使用htmlentities()

echo htmlentities( $gallerycontent['content'], ENT_QUOTES);
于 2013-01-15T19:16:18.020 回答