如果mysql查询的返回值包含""
和/
,则内容将显示在textarea之外
content = <a href="url">link</a>
echo()
在textarea
<textarea><?php echo $row['value']; ?></textarea>
textarea显示<a href=
,其后面的内容显示在textarea
如何在textarea中包含所有html?
答案 0 :(得分:4)
htmlspecialchars($row['value'])