我正在尝试将表格列中的所有表格行着色status = O
为黄色。并且所有表格行所在的表格status = P
列为绿色。
我无法编辑当前的 IF 语句以获得我想要的输出。现在我的代码如下所示:
if ($difflogtime <= $calctimespan || ($rid == 0 && ($status == 'O' || $status == 'P'))){
echo"<tr valign='top' BGCOLOR='green'>";
if ($editmode == 1)
echo "<td valign='top'><Center><font face='Arial' size=2><img src='closedlock.gif' alt='Closed for editing' width='30%'></td>";
else
// echo "<td><center><img src='openlock.gif' alt='Open for editing' border='0' width='30%'></td>";
echo "<td><center><font face='Arial' size = 2>$trimref</font></td>";
echo "<td><Center><font face='Arial' size = 2>".$dateshow1."</td>";
echo "<td><Center><font face='Arial' size = 2>".$logtime."</td>";
这会将每一行显示为绿色。有人可以帮我更改此代码以获得所需的输出吗?那将不胜感激。谢谢
请注意:这是一个使用 microsoft access 数据库并运行一些简单的 sql 查询的 php 文件。