count; } function make_reset_url( $hr_class ) { return ("".$hr_class.""); } db_init(); $timestr = time_str(time(0)); $title = "hr_class summary list at ".$timestr; admin_page_head( $title ); start_table(); row4( "hr_class", "System", "CPU", "# unsent results" ); $unsentresults = get_mysql_count( 0 ); row4( make_reset_url( 0 ), $system_string[ 128 ], $cpu_string[ 0 ], $unsentresults ); for( $system = 2; $system < 6; ++$system ) { for( $cpu = 1; $cpu < 22; ++$cpu ) { $hr_class=128*$system+$cpu; $unsentresults = get_mysql_count( $hr_class ); row4( make_reset_url( $hr_class ), $system_string[ $system * 128 ], $cpu_string[ $cpu ], $unsentresults ); } } end_table(); admin_page_tail(); ?>