Viewing file: v_sc_showCmt.php (3.85 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$_image_reply = array(
'src' => 'images/edit.png',
'width' => '15',
'height' => '15',
'border' => '0',
'title' => 'แก้ไขข้อมูล',
'onmouseover' => "this.style.cursor='pointer'"
);
$_image_del = array(
'src' => 'images/delete.png',
'width' => '15',
'height' => '15',
'border' => '0',
'title' => 'ลบข้อมูล',
'onmouseover' => "this.style.cursor='pointer'"
);
?>
<table id="table_show" class='tb_1' width="50%" >
<?php
if($rs_cmt->num_rows()>0){
$row = $rs_cmt->row();
?>
<!-- <tr>
<th colspan="7" align="left">
<?php
echo 'ปีการศึกษา : ';
echo $row->cmt_year;
?>
</th>
</tr>
<tr>
<th colspan="7" align="left">
<?php
echo ($cl_id!='')?'ชมรม : ':'สโมสร : ';
echo $row->sc_name;
?>
</th>
</tr> -->
<?php
}
?>
<!-- <tr>
<th align="center" width="10%">ลำดับที่</th>
<th align="center" width="15%">ปีการศึกษา</th>
<th align="center" >ตำแหน่ง</th>
<th align="center" >รหัสนักศึกษา</th>
<th align="center" >ชื่อ-สกุล</th>
<th align="center" >วันที่แต่งตั้ง</th>
<th align="center" width="5%">แก้ไข</th>
<th align="center" width="5%">ลบ</th>
</tr> -->
<?php
if($rs_cmt->num_rows() > 0){
$index = 1;
$cmt_year = '';
$sc_name = '';
$cmt_year = '';
foreach($rs_cmt->result() as $row){
if ($cmt_year != $row->cmt_year ) {
?>
<tr>
<th colspan="7" align="left">
<?php
echo 'ปีการศึกษา : ';
echo $row->cmt_year;
?>
</th>
</tr>
<?
}
?>
<?php
if ($sc_name != $row->sc_name ) {
?>
<tr>
<th colspan="7" align="left">
<?php
echo ($row->psc_name=='')?'สโมสร : ':'ชมรม : ';
echo $row->sc_name;
?>
</th>
</tr>
<tr>
<th align="center" width="10%">ลำดับที่</th>
<!-- <th align="center" width="15%">ปีการศึกษา</th> -->
<th align="center" >ตำแหน่ง</th>
<th align="center" >รหัสนักศึกษา</th>
<th align="center" >ชื่อ-สกุล</th>
<th align="center" >วันที่แต่งตั้ง</th>
<!-- <th align="center" width="5%">แก้ไข</th>
--> <th align="center" width="5%">ลบ</th>
</tr>
<?php }
?>
<tr>
<td align="center"><?=$index;?></td>
<!-- <td><?=$row->cmt_year;?></td> -->
<td><?=$row->pos_name;?></td>
<td align="center"><?=$row->stdCode;?></td>
<td><?=$row->stdName.' '.$row->stdSurname;?></td>
<td align="center"><?php echo fulldate2($row->cmt_fr_date);?></td>
<!-- <td align="center"><span class="hand" onClick="sendPost('myform', {'cmt_id':<?php echo $row->cmt_id;?>}, 'committee')"><?php echo img($this->config->item('sa_image_reply'));?></span></td> -->
<td align="center"><?php echo anchor($this->config->item('sa_folder').'smo_club/del_cmt/'.$row->cmt_id,img($_image_del),array('onclick'=>"return confirm('ต้องการลบตำแหน่งนี้ใช่หรือไม่');")); ?></td>
</tr>
<?php
$index++;
$cmt_year = $row->cmt_year;
$sc_name = $row->sc_name;
}
}else{
?>
<tr class="notfound">
<td colspan="7" >** ไม่พบชื่อตำแหน่ง **</td>
</tr>
<?php
}
?>
</table>
|