Viewing file:      v_showFaq.php (3.71 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php 
 $rowFaq = isset($qu_faq) ? $qu_faq->row() : NULL; 
 ?>
 <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
     <tr>
         <td>
             <div align="center">
             <?php echo form_open($this->config->item("rg_folder")."faq/faq_insert_update");?>
             <table width="100%" align="center" cellpadding="0" cellspacing="1" border="0">
                 <tr>
                     <td align="center"><span class="h error">คำถามที่พบบ่อย</span></td>
                 </tr>
                 <tr>
                     <td><br /></td>
                 </tr>
                 <tr>
                     <td><table class="szone">
                         <tr bgcolor="<?php echo $tr_color_even;?>">
                             <td class="coltd_szone">รหัสคำถาม</td>
                             <td><?php echo ($rowFaq==NULL) ? $max_faqId : setValue('faqId', $rowFaq);?></td>
                         </tr>
                         <tr bgcolor="<?php echo $tr_color_even;?>">
                             <td class="coltd_szone">คำถาม</td>
                             <td><textarea name="faqQuestion" id="faqQuestion" cols="55" rows="4"><?php echo set_value('faqQuestion', setValue('faqQuestion', $rowFaq));?></textarea>
                             <span class="error">* <?php echo form_error('faqQuestion');?></span></td>
                         </tr>
                         <tr bgcolor="<?php echo $tr_color_even;?>">
                             <td class="coltd_szone">คำตอบ</td>
                             <td><textarea name="faqAnswer" id="faqAnswer" cols="55" rows="4"><?php echo set_value('faqAnswer',setValue('faqAnswer', $rowFaq));?></textarea>
                             <span class="error">* <?php echo form_error('faqAnswer');?></span></td>
                         </tr>
                         <tr bgcolor="<?php echo $tr_color_even;?>">
                             <td colspan="2" align="center">
                             <input type="submit" name="add" value="บันทึก" />
                             <input type="reset" name="clear" value="เคลียร์ข้อมูล" />
                             <input type="hidden" name="faqId" id="faqId" value="<?php echo setValue('faqId', $rowFaq);?>" /></td>
                         </tr>
                     </table><?php echo form_close();?></td>
                 </tr>
                 <tr>
                     <td><br /></td>
                 </tr>
                 <tr>
                     <td><table class="headCol">
                         <tr>
                             <th class="seqCol">ลำดับที่</th>
                             <th>คำถาม</th>
                             <th>คำตอบ</th>
                             <th class="editCol">แก้ไข</th>
                             <th class="deleteCol">ลบ</th>
                         </tr>
 <?php        
             $i = 0;
             if(isset($rs_faq) && $rs_faq->num_rows()) {
                 foreach($rs_faq->result() as $row) {
                         echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
 ?>
                             <td align="center"><?php echo $i+1;?></td>
                             <td class="indent"><?php echo $row->faqQuestion;?></td>
                             <td class="indent"><font size="2"><?php echo $row->faqAnswer;?></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',{'faqId':<?php echo $row->faqId;?>},
                             '<?php echo site_url($this->config->item('rg_folder').'faq/showFaq');?>')" />
                             </td>
                             <td align="center"><span onClick="confirmDel2({faqId:<?php echo $row->faqId;?>}, 'm_form1','<?php echo site_url($this->config->item('rg_folder').'faq/faq_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="5" align="center"><span class="error">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>
                         </tr>
 <?php
             }
 ?>
                     </table></td>
                 </tr>
                 <tr>
                     <td align="right">รวม <?php echo $i;?> รายการ</td>
                 </tr>
             </table><?php echo form_close();?></div>
         </td>
     </tr>
 </table>
  |