Viewing file: v_showAmphur.php (3.65 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" align="center">
<tr>
<td>
<div align="center"><table width="100%">
<tr>
<td colspan="2" align="center" class="h">ข้อมูลอำเภอ</td>
</tr>
<tr>
<td align="right">
<?php
echo anchor_popup($this->config->item("rg_folder")."bdppc/ap_print", "<img src=\"".base_url().$this->config->item("rg_print")."\" width=\"15\" height=\"14\" align=\"absmiddle\" border=\"0\" />");
?>
</td>
</tr>
<?php echo form_open($this->config->item("rg_folder")."bdppc/ap_search");?>
<tr>
<td align="right">
<font size="2"><b>ชื่อจังหวัด</b></font>
<input type="text" name="prvNameSearch" value="<?php echo set_value('prvNameSearch','');?>" />
<font size="2"><b>ชื่ออำเภอ</b></font>
<input type="text" name="apNameSearch" value="<?php echo set_value('apNameSearch','');?>" />
<input type="submit" name="search" value="ค้นหา" />
<br /><font size="2" color="red"><?php echo isset($str_fault) ? $str_fault : '';?></font></td>
</tr>
<?php echo form_close();?>
<?php
if(isset($rs_ap) && $rs_ap->num_rows() > $this->config->item("rg_max_row")) {
?>
<tr>
<td colspan="3"><div class="boxBlock leftBox"><font size="2"><b>
แสดง <?php echo $this->config->item("rg_max_row");?> รายการจาก <?php echo $rs_ap->num_rows();?> รายการ</b></font>
</div></td>
<tr>
<?php
}
?> <tr>
<td><table width="100%" align="center" class="headCol">
<tr>
<th class="seqCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลำดับที่</b></font></th>
<th><font size="2" color="<?php echo $font_color_table;?>"><b>ชื่ออำเภอ (ไทย)</b></font></th>
<th><font size="2" color="<?php echo $font_color_table;?>"><b>ชื่ออำเภอ (อังกฤษ)</b></font></th>
<th><font size="2" color="<?php echo $font_color_table;?>"><b>ชื่อจังหวัด</b></font></th>
<th class="editCol"><font size="2" color="<?php echo $font_color_table;?>">แก้ไข</font></th>
<th class="deleteCol"><font size="2" color="<?php echo $font_color_table;?>">ลบ</font></th>
</tr>
<?php
$i = 0;
if(isset($rs_ap) && $rs_ap->num_rows()) {
foreach($rs_ap->result() as $row) {
if($i >= $this->config->item("rg_max_row"))
break;
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->amphurName;?></font></td>
<td class="indent"><font size="2"><?php echo $row->amphurNameEng;?></font></td>
<td class="indent"><font size="2"><?php echo $row->provinceName;?></font></td>
<td align="center"><img src="<?php echo base_url().$this->config->item("rg_editgrey");?>" align="absmiddle" border="0" /></td>
<td align="center"><img src="<?php echo base_url().$this->config->item("rg_editgrey");?>" align="absmiddle" border="0" /></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>
</td>
</tr>
</table>
|