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