");
$row = 1;
while($current = mysql_fetch_array($query)) {
if(!is_integer($row/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; }
echo("
| " . $current['sensor_descr'] . " |
" . $current['sensor_current'] . "A |
" . $current['sensor_limit_low'] . 'A - ' . $current['sensor_limit'] . "A |
" . $current['sensor_notes'] . " |
\n");
echo("| ");
$graph_type = "sensor_current";
$graph_array['id'] = $current['sensor_id'];
$graph_array['type'] = $graph_type;
include("includes/print-quadgraphs.inc.php");
$i++;
}
echo("");
?>
|