您好,我一直在尝试使用 \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
我不知道我做错了什么。我真的很感激帮助