Viewing file: v_addPeriod.php (5.85 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$row_prd = (isset($qu_prd) && $qu_prd!=NULL) ? $qu_prd->row() : NULL;
if (setValue('prdFrTime', $row_prd)) {
list($h1,$m1,$s1) = preg_split("[/|:]",setValue('prdFrTime', $row_prd));
} else {
$h1 = $m1 = $s1 = '';
}
if (setValue('prdToTime', $row_prd)) {
list($h2,$m2,$s2) = preg_split("[/|:]",setValue('prdToTime', $row_prd));
} else {
$h2 = $m2 = $s2 = '';
}
?>
</script>
<table width="100%" align="center">
<tr>
<td>
<div align="center">
<table width="100%">
<tr>
<td colspan="2" align="center" class="h error">ข้อมูลคาบ</td>
</tr>
<tr>
<td align="right">
<?php
echo anchor_popup($this->config->item("rg_folder")."bdcollege/prd_print", "<img src=\"".base_url().$this->config->item('rg_print')."\" width=\"15\" height=\"14\" align=\"absmiddle\" border=\"0\" />");
?>
</td>
</tr>
<tr>
<td><?php echo form_open($this->config->item("rg_folder")."bdcollege/prd_insert_update", array("name" => "myform", "id" => "myform"));?>
<table class="szone">
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone"><font size="2">คาบที่</font></td>
<td ><font size="2"><?php echo ($row_prd==NULL) ? $rs_prd->num_rows()+1 : setValue('prdId',$row_prd);?></font></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone"><font size="2">เวลาเริ่ม</font></td>
<td>
<input type="text" name="HH1" size="2" maxlength="2" value='<?php echo set_value('HH1',$h1); ?>' class="required-int">:<input type="text" name="ii1" size="2" maxlength="2" value='<?php echo set_value('ii1',$m1); ?>' class="required-int" />
<font size="2" color="<?php echo $font_color_err;?>">*</font>
<span class="error" style="display:inline;"></span>
<br /><?php echo form_error('HH1') ? form_error('HH1') : form_error('ii1');?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td class="coltd_szone"><font size="2">เวลาสิ้นสุด</font></td>
<td><input type="text" name="HH2" size="2" maxlength="2" value='<?php echo set_value('HH2',$h2); ?>' class="required-int" />:<input type="text" name="ii2" size="2" maxlength="2" value='<?php echo set_value('ii2',$m2);?>' class="required-int" />
<font size="2" color="<?php echo $font_color_err;?>">*</font>
<span class="error" style="display:inline;"></span>
<br /><?php echo form_error('HH2') ? form_error('HH2') : form_error('ii2');?></td>
</tr>
<tr bgcolor="<?php echo $tr_color_even;?>">
<td colspan="2" align="center">
<?php
$lnk = "<input type=\"submit\" id=\"add\" name=\"add\" value=\"บันทึก\" />";
echo $oCRUD->CRUD($lnk, 'C');
?>
<input type="reset" name="clear" value="เคลียร์ข้อมูล" />
<input type="hidden" name="prdId" id="prdId" value="<?php echo setValue('prdId',$row_prd);?>" /></td>
</tr>
</table><?php echo form_close();?></td>
</tr>
<tr><td><br/></td></tr>
<?php
if(isset($rs_prd) && $rs_prd->num_rows() > $this->config->item("rg_max_row")) {
?>
<tr>
<td colspan="3"><div class="boxBlock leftBox"><font size="2">
แสดง <?php echo $rs_prd->num_rows();?> รายการจาก <?php echo $this->config->item("rg_max_row");?> รายการ</font>
</div></td>
<tr>
<?php
}
?> <tr>
<td><table class="headCol">
<tr>
<th class="seqCol"><font size="2" color="<?php echo $font_color_table;?>"><b>คาบที่</b></font></th>
<th><font color="<?php echo $font_color_table;?>" size="2"><b>เวลาเริ่ม</b></font></th>
<th><font size="2" color="<?php echo $font_color_table;?>"><b>เวลาสิ้นสุด</b></font></th>
<th class="editCol"><font color="<?php echo $font_color_table;?>" size="2">แก้ไข</font></th>
<th class="deleteCol"><font color="<?php echo $font_color_table;?>" size="2">ลบ</font></th>
</tr>
<?php
$i = 0;
if(isset($rs_prd) && $rs_prd->num_rows()) {
foreach($rs_prd->result() as $row) {
echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
?>
<td align="center"><font size="2"><?php echo $i+1;?></font></td>
<td class="indent"><font size="2"><?php echo substr($row->prdFrTime,0,5);?></font></td>
<td class="indent"><font size="2"><?php echo substr($row->prdToTime,0,5);?></font></td>
<td align="center">
<?php
$lnk = "<span class=\"hand\" onClick=\"sendPost('hidform', {'prdId':".$row->prdId."}, 'prd_input')\"><img src=\"".base_url().$this->config->item("rg_edit")."\" align=\"absmiddle\" border=\"0\" /></span>";
echo $oCRUD->CRUD($lnk, 'U');
?>
</td>
<td align="center">
<?php
$lnk = "<span class=\"hand\" onClick=\"confirmDel2({'prdId':".$row->prdId."}, 'm_form1', 'prd_delete')\" /><img src=\"".base_url().$this->config->item("rg_delete")."\" align=\"absmiddle\" border=\"0\" width=\"16\" height=\"19\" /></span>";
echo $oCRUD->CRUD($lnk, 'D');
?>
</td>
</tr>
<?php
$i++;
}
} else {
?>
<tr>
<td colspan="5" height="22" align="center"><font size="2" color="<?php echo $font_color_err;?>">** ไม่ปรากฏรายการในฐานข้อมูล **</font></td>
</tr>
<?php
}
?>
</table></td>
</tr>
<tr>
<td align="right"><font size="2">รวม <?php echo $i;?> รายการ</font></td>
</tr>
</table></div>
<font size="2" color="<?php echo $font_color_err;?>"><b>หมายเหตุ : </b>* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</font></td>
</tr>
</table>
|