可能重复:
在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'];
那么如何解决这个问题。请帮我。谢谢。