Viewing file: v_NewsShowAll.php (2.12 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<script language="JavaScript1.2">
function showNw() {
alert(document.getElementById('nwSystem').value);
}
</script>
<table width="100%"><?php echo form_open($this->config->item("rg_folder")."faq/nw_showAll", array("name" => "myform", "id" => "myform"));?>
<tr>
<td align="center"><span class="h error">แจ้งข่าวประกาศ</span></td>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<td><b>ข่าวประจำระบบ </b>
<?php
$js = 'id="nwSystem" onChange="document.myform.submit()"';
echo form_dropdown('nwSystem', $rs_sys, set_value('nwSystem',$chksys), $js);
?>
</td>
</tr>
<tr>
<td><table class="headCol">
<tr>
<th class="seqCol">ลำดับที่</th>
<th>หัวเรื่องข่าวประกาศ</th>
<th>ข่าวประจำระบบ</th>
<th class="hourCol">วันที่แจ้งข่าวประกาศ</th>
</tr>
<?php
$i = 0;
if(isset($rs_nw) && $rs_nw->num_rows()) {
foreach($rs_nw->result() as $row_nw) {
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"><span class="hand" onClick="sendPost(
'frm_detail',
{'nwId':<?php echo $row_nw->nwId;?>},
'<?php echo site_url($this->config->item('rg_folder').'faq/nw_showDetail');?>',
{'width':500, 'height':600})" /><?php echo $row_nw->nwTitle;?></span></td>
<td class="indent"><?php echo $row_nw->StNameT;?></td>
<td class="indent"><?php echo abbreDate2($row_nw->dateCreate);?></th>
<?php
$i++;
}
} else {
?>
<tr>
<td align="center" colspan="4"><span class="error">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>
</tr>
<?php
}
?>
</table></td>
</tr>
<tr>
<td><input type="button" name="back" id="back" value="ย้อนกลับ" onclick="location.href='<?php echo site_url()."/".$this->config->item('rg_folder').'faq/nw_show';?>'" /></td>
</tr>
<?php echo form_close();?></table>
|