使用 tinymce 作为内容,它在本地服务器上运行良好,但在远程服务器上会破坏格式。
保存内容:
mysql_real_escape_string( htmlentities($slide_name,ENT_QUOTES,'UTF-8'))
检索时:
html_entity_decode($slide_name, ENT_QUOTES,'UTF-8')
在本地服务器上它正确显示内容:
<p><strong style="text-decoration: underline;">Contact:</strong> 0000-<span style="color: #ff0000;">245</span></p>
在远程(第一次更新后):
<p><span style="\"><strong style="\">Contact:</strong></span> 0000-<span style="\">245</span></p>
对两个数据库使用utf8_general_ci
排序规则(远程/本地)