Viewing file: v_showDetailSdm.php (2.12 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$row_std = isset($qu_std) ? $qu_std->row() : NULL;
?>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><fieldset>
<legend align="center"><span class="h" style="color:<?php echo $font_color_err;?>">รายละเอียดข้อมูลการพักหอพัก</span></legend>
<div align="center"><br><table class="szone">
<tr>
<td class="coltd_szone"><span><b>นักศึกษา</b></span></td>
<td><span><?php echo getval('prefixName', $row_std).getval('stdName', $row_std).' '.getval('stdSurname', $row_std);?></span></td>
</tr>
<tr>
<td colspan="2"><table class="headCol">
<tr>
<th><span>ภาค/ปีการศึกษา</span></td>
<th><span>หอพัก/ห้องพัก</span></td>
<th><span>จำนวนเดือน</span></td>
</tr>
<?php
$num_rows = 0;
if (isset($rs_sdm) && $rs_sdm->num_rows()) {
$num_rows = $rs_sdm->num_rows();
foreach ($rs_sdm->result() as $row_sdm) {
echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
?>
<td align="center"><span><?php echo $row_sdm->sdmTmId.'/'.$row_sdm->sdmAcY;?></span></td>
<td class="indent"><span><?php echo $row_sdm->hwName2.' '.$row_sdm->hwName1;?></span></td>
<td align="center"><span><?php echo $row_sdm->sdmNumMonth;?></span></td>
</tr>
<?php
}
} else {
?>
<tr align="center">
<td colspan="3"><span style="color:<?php echo $font_color_err;?>">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>
</tr>
<?php
}
?>
</table></td>
</tr>
<tr align="right">
<td colspan="2"><span>รวม <?php echo $num_rows;?> รายการ</span></td>
</tr>
<tr align="center">
<td colspan="2"><input type="button" name="close" value="ปิดหน้านี้" onClick="window.close()" /></td>
</tr>
</table></div>
</fieldset></td>
</tr>
</table>
|