-1

重複の可能性:
PHP での二重引用符のエスケープ

私のデータベースでは、レコードはthis is php's code and "called" a special code. このテキストを mysql データベースから php ページに取得しようとすると、this is php's code and
My code is simpleに表示されます。

$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 に答える