Viewing file:      v_addPrefix.php (6.9 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php $rowPf = (isset($qu_pf) && $qu_pf!=NULL) ? $qu_pf->row() : NULL; ?> <table width="100%">     <tr>         <td>             <div align="center"><table width="100%" >                 <tr>                     <td colspan="2" align="center" class="h error">ข้อมูลคำนำหน้าชื่อ</td>                 </tr>                 <tr>                     <td colspan="2" height="22" align="right"> <?php                     echo anchor_popup($this->config->item("rg_folder")."bdppc/pf_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")."bdppc/pf_insert_update");?><table class="szone">                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone2"><font size="2">คำนำหน้าชื่อ (ไทย)</font></td>                             <td><input type="text" name="pfName" id="pfName" value="<?php echo set_value('pfName',setValue('prefixNameFull',$rowPf));?>" size="30" class="required-thai" />                             <span class="error"> *<?php echo form_error("pfName");?></span></td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone2"><font size="2">คำนำหน้าชื่อ (อังกฤษ)</font></td>                             <td><input type="text" name="pfNameE" id="pfNameE" value="<?php echo set_value('pfNameE',setValue('prefixNameEngFull',$rowPf));?>" size="30" class="required-eng" /><span class="error"> *<?php echo form_error("pfNameE");?></span></td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone2"><font size="2">ชื่อย่อคำนำหน้าชื่อ (ไทย)</font></td>                             <td><input type="text" name="pfNameAbbr" id="pfNameAbbr" value="<?php echo set_value('pfNameAbbr',setValue('prefixName',$rowPf));?>" size="20" class="required-thai" />                             <span class="error"> *<?php echo form_error("pfNameAbbr");?></span></td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone2"><font size="2">ชื่อย่อคำนำหน้าชื่อ (อังกฤษ)</font></td>                             <td><input type="text" name="pfNameAbbrE" id="pfNameAbbrE" value="<?php echo set_value('pfNameAbbrE',setValue('prefixNameEng',$rowPf));?>" size="20" class="required-eng" />                             <span class="error"> *<?php echo form_error("pfNameAbbrE");?></span></td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td class="coltd_szone"><font size="2">เพศ</td>                             <td> <?php                             echo form_dropdown("pfGender", $gender, set_value('pfGender',setValue('defaultSex',$rowPf))); ?>                             </td>                         </tr>                         <tr bgcolor="<?php echo $tr_color_even;?>">                             <td colspan="2" align="center"> <?php                             $lnk = "<input type=\"submit\" name=\"add\" value=\"บันทึก\" />";                             echo $lnk;                             //echo $oU->CRUD($lnk, 'C'); ?>                             <input type="reset" name="clear" value="เคลียร์ข้อมูล">                             <input type="hidden" name="pfId" id="pfId" value="<?php echo setValue('prefixId',$rowPf);?>" /></td>                         </tr>                     </table><?php echo form_close();?></td>                 </tr>                 <tr>                     <?php echo form_open($this->config->item("rg_folder")."bdppc/pf_search");?><td align="right">                     <font size="2"><b>คำนำหน้าชื่อ (ไทย)</b></font>                     <input type="text" name="pfNameSearch" value="<?php echo set_value('pfNameSearch','');?>" />                     <input type="submit" name="search" value="ค้นหา" />                     <br /><?php echo form_error("pfNameSearch");?>                     </td><?php echo form_close();?>                 </tr>                 <tr>                     <td><table width="100%" align="center" class="headCol">                         <tr bgcolor="<?php echo $this->config->item("rg_table_color");?>">                             <th class="seqCol"><font size="2" color="<?php echo $font_color_table;?>">ลำดับที่</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>เพศ</th>                             <th class="editCol"><font color="<?php echo $font_color_table;?>" size="2"><b>แก้ไข</b></font></th>                             <th class="deleteCol"><font color="<?php echo $font_color_table;?>" size="2"><b>ลบ</b></font></th>                         </tr> <?php             $i = 0;             if(isset($rs_pf) && $rs_pf->num_rows()) {                 foreach($rs_pf->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">                             <span class="hand" onClick="sendPost('f_detail',                             {'pfId':<?php echo $row->prefixId;?>},                              '<?php echo site_url($this->config->item('rg_folder').'bdppc/pf_detail');?>',{'width':400,'height':400})" /><?php echo $row->prefixName;?></span></td>                             <td class="indent"><font size="2"><?php echo $row->prefixNameEng;?></font></td>                             <td align="center"><?php echo $row->defaultSex;?></td>                             <td align="center">                             <span class ="hand" onClick="sendPost(                             'hidform',{'pfId':<?php echo $row->prefixId;?>},'<?php echo site_url($this->config->item('rg_folder').'bdppc/pf_input');?>')"><img src="<?php echo base_url().$this->config->item("rg_edit");?>" align="absmiddle" border="0" /></span></td>                             <td align="center"> <?php                             $lnk = "<span class=\"hand\" onClick=\"confirmDel2({'pfId':".$row->prefixId."}, 'm_form1', '".site_url($this->config->item('rg_folder'))."/bdppc/pf_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="6" 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>         </fieldset></td>     </tr>     <tr>         <td><table width="100%">             <tr>                 <td width="8%"><font size="2" color="<?php echo $font_color_err;?>"><b>หมายเหตุ : </b></font></td>                 <td><font size="2" color="<?php echo $font_color_err;?>">* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</font></td>             </tr>             <tr>                 <td></td>                 <td><font size="2" color="<?php echo $font_color_err;?>">ใช้เมาส์คลิกที่คำนำหน้าชื่อเพื่อดูรายละเอียดคำนำหน้าชื่อ</font></td>             </tr>         </table></td>     </tr> </table>
  |