Viewing file: v_rpt_health.php (2.69 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
header('Content-type: application/xls');
header('Content-Disposition: attachment; filename="testing.xls"');
?>
<h3>รายงานประวัติสุขภาพและป่วยเป็นโรค</h3>
<table width="100%" border="1">
<thead>
<tr>
<th>ลำดับ</th>
<th>รหัสนักศึกษา</th>
<th>ชื่อ-สกุลนักศึกษา</th>
<th>น้ำหนัก</th>
<th>ส่วนสูง</th>
<th>เส้นรอบเอว</th>
<th>ดัชนีมวลกาย</th>
<th>ผลการประเมินดัชนีมวลกาย</th>
<th>โรค</th>
<th>อาการ</th>
<th>ชื่อวัคซีนที่ได้รับ</th>
<th>อวัยวะที่ x-ray</th>
<th>ผลการตรวจต่างๆ</th>
<th>การรักษาและคำแนะนำ</th>
<th>ผลการรักษา</th>
<th>สถานะการนอนรักษาตัว</th>
<th>สถานที่รักษา</th>
<th>วันที่เริ่มต้น</th>
<th>วันที่สิ้นสุด</th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
if (isset($rs_hth)) {
foreach ($rs_hth->result() as $row_hth) {
?>
<tr >
<td height="22" align="center"><?php echo $i;?></td>
<td align="center"><?php echo $row_hth->stdCode;?></td>
<td><?php echo $row_hth->prefixName.$row_hth->stdName.' '.$row_hth->stdSurname;?></td>
<td align="right"><?php echo number_format($row_hth->hth_weight, 1) ;?></td>
<td align="right"><?php echo number_format($row_hth->hth_height, 1);?></td>
<td align="right"><?php echo number_format($row_hth->hth_waist, 1);?></td>
<td align="right"><?php echo number_format($row_hth->hth_BMI, 1);?></td>
<td><?php echo $row_hth->bmi_name;?></td>
<td><?php echo $row_hth->hth_disease;?></td>
<td><?php echo $row_hth->hth_symptom;?></td>
<td><?php echo $row_hth->hth_vaccine;?></td>
<td><?php echo $row_hth->hth_xray;?></td>
<td><?php echo $row_hth->hth_diagnose;?></td>
<td><?php echo $row_hth->hth_treatment;?></td>
<td><?php echo $row_hth->hth_result_diagnose;?></td>
<td align="center"><?php echo $row_hth->hth_pd;?></td>
<td><?php echo $row_hth->hth_place;?></td>
<td align="center"><?php echo abbreDate2($row_hth->hth_fr_date);?></td>
<td align="center"><?php echo abbreDate2($row_hth->hth_to_date);?></td>
</tr>
<?php
$i++;
}
}
if ($i == 1) {
?>
<tr class="notfound">
<td colspan="19"><?php echo $this->config->item('sa_not_found');?></td>
</tr>
<?php
}
?>
</tbody>
</table>
|