Viewing file: v_cli_set.php (2.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<fieldset> <legend>อัพเดทข้อมูลพื้นฐานกลาง</legend> <table style="width:100%;"> <tbody> <tr> <td><label>ชื่อเครื่อง Server :: </label><span id="server_name"><?php echo $server_name;?></span></td> </tr> <tr> <td><?php $atts = array( 'width' => '800', 'height' => '600', 'scrollbars' => 'yes', 'status' => 'yes', 'resizable' => 'yes', 'screenx' => '0', 'screeny' => '0' ); echo anchor_popup($this->config->item('ver_folder').'ver_client/update_server/1',"<img src=\"".base_url().$this->config->item('ver_pc')."\" class=\"noborder\" /> แก้ไขชื่อเครื่อง Server",$atts); ?> </td> <tr> <tr> <td><?php echo anchor($this->config->item('ver_folder').'ver_client/show_nonupdate',"<img src=\"".base_url().$this->config->item('ver_no_db')."\" class=\"noborder\" width=\"20\" height=\"20\" /> ดูข้อมูลที่ทำการดาวน์โหลดมาแล้ว แต่ยังไม่ได้อัพเดท");?></td> </tr> </tbody> </table> <?php echo form_open($this->config->item('ver_folder').'ver_client/get_update');?> <div style="text-align:center;"> <table style="margin:0 auto;"> <tbody> <tr> <td>เลือกระบบ : </td> <td> <select name="csys_id" id="csys_id"> <option value="">---</option> <?php if(isset($rs_sys) && $rs_sys->num_rows()) { foreach($rs_sys->result() as $sys_row ) { ?> <option value="<?php echo $sys_row->csys_id;?>"><?php echo $sys_row->csys_th_name;?></option> <?php } } ?> </select> <input type="submit" name="btnSubmit" id="btnSubmit" value="ตรวจสอบข้อมูลอัพเดท" /> </td> </tr> </tbody> </table> </div> <?php echo form_close(); $this->load->view($this->config->item('ver_folder').'v_cli_upd'); ?>
</fieldset>
|