PHP:mysql返回值“escapes”textarea

时间:2010-09-25 17:27:29

标签: php mysql textarea

如果mysql查询的返回值包含""/,则内容将显示在textarea之外

content = <a href="url">link</a>

echo()在textarea

中使用
<textarea><?php echo $row['value']; ?></textarea>

textarea显示<a href=,其后面的内容显示在textarea

之外

如何在textarea中包含所有html?

1 个答案:

答案 0 :(得分:4)

htmlspecialchars($row['value'])