<?php
while($row = mysql_fetch_assoc($query)) {
if ($row['status'] == 0) {
echo "<font style='background-color:red'><tr><td>- " . $row['applicatie'] . "</td></tr></font>";
}
}
?>
Oplossing zelf al gevonden:
<?php
while($row = mysql_fetch_assoc($query)) {
if ($status == 0) {
echo "<tr><td><font style='background-color:red'>- " . $row['applicatie'] . "</td></tr></font>";
}
}
?>