我正在尝试将我的php输出显示到表格中。但是,我每次都收到一条错误消息。
不带代码的代码:
Print "<strong>Responsibility: $<strong> ";
Print number_format($RunningTotal,2);
我收到错误消息的表格代码:
Print "<TABLE><tr><td width = '50 px'>Responsibility: $<strong></td> ";
Print "<td> number_format($RunningTotal,2) </td></tr></table>;
我做错了什么?如何以表格格式显示数据?
答案 0 :(得分:2)
Print "<TABLE><tr><td width = '50 px'>Responsibility: $<strong></td> ";
Print "<td>".number_format($RunningTotal,2)." </td></tr></table>";
答案 1 :(得分:0)
看起来您的第二个打印声明缺少引号。
答案 2 :(得分:0)
使用echo,它比打印更快
echo "<TABLE><tr><td width = '50 px'>Responsibility: $<strong></td> ";
echo "<td> ".number_format($RunningTotal,2)." </td></tr></table>;