<head>
<style>td.highlight: background-color: yellow;</style>
</head>
...
<?php
$value1 = 4;
$value1_tol = 1; (allows values 3 - 5);
$min_value1 = $value1 - $value1_tol;
$max_value1 = $value1 + $value1_tol;
...loop...
$class = ($field > $max_value1 || $field < $min_value1) ? ' class="highlight"' : '';
...
print "\t<td$class>field</td>\n";
...
...end loop...
...
?>
diafol
Rhod Gilbert Fan (ardav)
7,800 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080