0

这是我的代码:

$blogid = mysql_real_escape_string($_GET['id']); 

if((isset($_POST['comment']))&&(!(trim($_POST['comment'])==FALSE))&&(isset($_SESSION['userid']))){

   $comment = mysql_real_escape_string($_POST['comment']); 
   $querycomment = "INSERT INTO `comment` (`userid`, `blogid`, `body`) VALUES ( '".$_SESSION['userid']."', '".$blogid."', '".$comment."');";
   $rowchat = mysql_query($querymess,$db_con) or die("Failed: " . mysql_error() );

}

<form method="post" action="blog.php?id=<?php echo $blogid; ?>" >
<textarea name="comment" ></textarea>
<input type="submit" value="send" name="submit" />
</form>

当用户对此发表评论时:

This
is
my
world

然后在评论列表中出现这个:

This is my world

为什么换行不起作用?

4

1 回答 1

5

因为换行符保存为\n.

nl2br($string)您可以在回显字符串之前使用 PHP 函数。

<?php
    $string = "This\nis\nmy\nworld";
    echo nl2br($string);
?>
于 2013-05-06T10:10:11.283 回答