Hello,
I need some help on my table report using php..
So this is my coding
<?php
while($row=mysql_fetch_array($result))
{
echo "</td><td>";
echo $row['full_name'];
echo "</td><td>";
echo $row['section'];
echo "</td><td>";
echo $row['time'];
echo "</td><td>";
echo $row['reason'];
echo "</td></tr>";
}
echo "</table>";
?>
so, this is what i need to do .... I need to have changing on cell table color depends on variable.. say for example..
say for example.. if time is more than 08:00:00 the table cell will change to orange... please help me
Tq...