echo "</th>";
    }
}
if ($site_settings->groupByGender == 1) {
    echo "<th >" . LangUtil::$pageTerms['TOTAL_MF'] . "</th>";
}
echo "<th ></th>";
echo "<th ></th>";
?>
		<tr>
	</thead>
	<tbody>
	<?php 
foreach ($selected_test_types as $test) {
    $currentMeasurecount = 0;
    StatsLib::setDiseaseSetListAggregate($lab_config_ids, $test, $date_from, $date_to);
    $measures = $test->getMeasures();
    foreach ($measures as $measure) {
        $male_total = array();
        $female_total = array();
        $cross_gender_total = array();
        $curr_male_total = 0;
        $curr_female_total = 0;
        $curr_cross_gender_total = 0;
        $disease_report = GlobalInfectionReport::getByKeys($_SESSION['user_id'], $test->testId, $measure->measureId);
        if ($disease_report == null) {
            # TODO: Check for error control
            # Alphanumeric values. Hence entry not found.
            //continue;
            break;
        }