-6

可能重复:
PHP:尝试在 PHP 中使用“\n”</a>
换行帮助创建新行

您好,我一直在尝试使用 \n 东西回显到 PHP 中的新行,但它不起作用,我尝试将它分开以防万一 PHP 感到困惑或其他东西,但它仍然无法正常工作,帮助!

这是我的代码,你不需要知道这一切:

取“id”为1,“sender”为“test”,“message”为“test”

echo($rows."\n");

while($rowarray = mysql_fetch_array($result)){

echo($rowarray["id"].") From: ".$rowarray["sender"]." - ".$rowarray["message"]."\n");

}

我希望它像这样打印出来:

1 (or how many rows there are)
1) From: test - test

我不知道我做错了什么。我真的很感激帮助

4

1 回答 1

2

如果您在浏览器中查看此输出,请尝试添加中断标记而不是换行符。

echo($rows."<br />");

while($rowarray = mysql_fetch_array($result)){
    echo($rowarray["id"].") From: ".$rowarray["sender"]." - ".$rowarray["message"]."<br />");
}

我还要补充一点,不推荐使用 mysql* 扩展,您应该使用mysqliorPDO代替。

于 2012-11-12T19:14:41.910 回答