Viewing file: v_addReligion.php (4.99 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $rowRlg = (isset($qu_rlg) && $qu_rlg!=NULL) ? $qu_rlg->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="right"> <?php echo anchor_popup($this->config->item("rg_folder")."bdppc/rlg_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/rlg_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><input type="text" name="rlgName" id="rlgName" value="<?php echo set_value('rlgName',setValue('religionName',$rowRlg));?>" size="20" /> <font size="2" color="<?php echo $font_color_err;?>">*</font> <br /><?php echo form_error("rlgName");?></td> </tr> <tr bgcolor="<?php echo $tr_color_even;?>"?> <td class="coltd_szone"><font size="2">ชื่อศาสนา (อังกฤษ)</font></td> <td><input type="text" name="rlgNameE" id="rlgNameE" value="<?php echo set_value('rlgNameE',setValue('religionNameEng',$rowRlg));?>" size="20" /> <font size="2" color="<?php echo $font_color_err;?>">*</font> <br /><?php echo form_error("rlgNameE");?></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="rlgId" id="rlgId" value="<?php echo setValue('religionId',$rowRlg);?>" /></td> </tr> </table><?php echo form_close();?></td> </tr> <tr> <?php echo form_open($this->config->item("rg_folder")."bdppc/rlg_search");?><td align="right"> <font size="2"><b>ชื่อศาสนา (ไทย)</b></font> <input type="text" name="rlgNameSearch" value="<?php echo set_value('rlgNameSearch','');?> "/> <input type="submit" name="search" value="ค้นหา" /> <br /><?php echo form_error('rlgNameSearch');?> </td><?php echo form_close();?> </tr> <tr> <td><table width="100%" align="center" class="headCol"> <tr> <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></td> <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_rlg) && $rs_rlg->num_rows()) { foreach($rs_rlg->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->religionName;?></font></td> <td class="indent"><font size="2"><?php echo $row->religionNameEng;?></font></td> <td align="center"> <span class ="hand" onClick="sendPost( 'hidform',{'rlgId':<?php echo $row->religionId;?>},'<?php echo site_url($this->config->item('rg_folder').'bdppc/rlg_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({'rlgId':".$row->religionId."}, 'm_form1', '".site_url($this->config->item('rg_folder'))."/bdppc/rlg_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> </fieldset><br><font size="2" color="<?php echo $font_color_err;?>"><b>หมายเหตุ : </b>* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</font></td> </tr> </table>
|