在打印的div中包含来自sql数据库的换行符

时间:2018-05-29 20:45:23

标签: sql

在我的SQL数据库中,我有一个包含换行符的条目;它看起来像这样:

enter image description here

然而,当我在我的html / php页面上打印时,所有换行符都消失了:

enter image description here

这是我用来从数据库中获取它的代码:

$sql = "SELECT * FROM table";

$result = mysqli_query($con,$sql);

while($item= mysqli_fetch_assoc($result)){
   $item['comment']
}

如何将数据库中的换行符放到网站上?

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以使用nl2br使用以下解决方案:

$sql = "SELECT * FROM table";

$result = mysqli_query($con,$sql);

while($item = mysqli_fetch_assoc($result)){
    echo nl2br($item['comment']);
}