Viewing file:      v_addGradeTp.php (4.17 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php $row_gtp = (isset($qu_gtp) && $qu_gtp!=NULL) ? $qu_gtp->row() : NULL; ?> <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="center"></td>                 </tr>                 <tr>                     <td align="right"> <?php                     echo anchor_popup($this->config->item("rg_folder")."bdpbri/gtp_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")."bdpbri/gtp_insert_update");?><table class="szone">                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone"><font size="2">ชื่อรูปแบบเกรด</font></td>                             <td><input type="text" size="20" name="gtpName" id="gtpName" value="<?php echo setValue('gtpName', $row_gtp);?>" size="1" class="required" />                             <span class="error">* <?php echo form_error("gtpName");?></span></td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td colspan="3" align="center">                             <input type="submit" name="add" id="add" value="บันทึก" />                             <input type="reset" name="clear" value="เคลียร์ข้อมูล" />                             <input type="hidden" name="gtpId" id="gtpId" value="<?php echo setValue('gtpId', $row_gtp);?>" /></td>                         </tr>                     </table><?php echo form_close();?></td>                 </tr> <?php                 if(isset($rs_gtp) && $rs_gtp->num_rows() > $this->config->item("rg_max_row")) { ?>                     <tr>                         <td colspan="3"><div class="boxBlock leftBox"><font size="2">                         แสดง <?php echo $rs_gtp->num_rows();?> รายการจาก <?php echo $this->config->item('rg_max_row');?> รายการ</font>                         </div></td>                     <tr> <?php                 } ?>                <tr>                     <td><table width="100%" align="center" class="headCol">                         <tr>                             <th class="seqCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลำดับที่</b></font></th>                             <th><font size="2" color="<?php echo $font_color_table;?>"><b>ชื่อรูปแบบเกรด</b></font></th>                             <th class="editCol"><font size="2" color="<?php echo $font_color_table;?>"><b>แก้ไข</b></font></th>                             <th class="deleteCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลบ</b></font></th>                         </tr> <?php                 $i = 0;                 if(isset($rs_gtp) && $rs_gtp->num_rows()) {                     foreach($rs_gtp->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 $row->gtpName;?></font></td>                             <td align="center">                             <img class="hand" src="<?php echo base_url().$this->config->item("rg_edit");?>" align="absmiddle" border="0"                              onClick="sendPost('hidform',                             {'gtpId':<?php echo $row->gtpId;?>},                              '<?php echo site_url($this->config->item('rg_folder').'bdpbri/gtp_input');?>')" /></td>                             <td align="center"><span onClick="confirmDel2({gtpId:<?php echo $row->gtpId;?>}, 'm_form1','<?php echo site_url($this->config->item('rg_folder').'bdpbri/gtp_delete');?>')" /><img src="<?php echo base_url().$this->config->item("rg_delete");?>" align="absmiddle" border="0" width="16" height="19" class="hand"/></span></td>                         </tr> <?php                         $i++;                     }                 } else { ?>                         <tr>                             <td colspan="8" height="22" align="center"><span class="error">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>                         </tr> <?php                 } ?>                     </table></td>                 </tr>             </table></div>         </td>     </tr>     <tr>         <td colspan="4" align="right">รวม <?php echo $i;?> รายการ</td>     </tr>     <tr>         <td><table width="100%">             <tr>                 <td width="8%"><span class="error"><strong>หมายเหตุ : </strong></span></td>                 <td><span class="error">* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</span></td>             </tr>         </table></td>     </tr> </table>
  |