Viewing file: v_showDistrict.php (4 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" align="center">
<tr>
<td>
<div align="center">
<table width="100%">
<td colspan="2" align="center" class="h">ข้อมูลตำบล</td>
</tr>
<tr>
<td align="right">
<?php
echo anchor_popup($this->config->item("rg_folder")."bdppc/dt_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/dt_search");?>
<tr>
<td align="right">
<font size="2"><b>ชื่อจังหวัด</b>
<input type="text" name="prvNameSearch" size="20" value="<?php echo set_value('prvNameSearch','');?>" />
<b>ชื่ออำเภอ</b>
<input type="text" name="apNameSearch" size="20" value="<?php echo set_value('apNameSearch','');?>" />
<b>ชื่อตำบล</b></font>
<input type="text" name="dtNameSearch" size="20" value="<?php echo set_value('dtNameSearch','');?>"/>
<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_dt) && $rs_dt->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_dt->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><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;?>"><b>แก้ไข</b></font></th>
<th class="deleteCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลบ</b></font></th>
</tr>
<?php
$i = 0;
if(isset($rs_dt) && $rs_dt->num_rows()) {
foreach($rs_dt->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->districtName;?></font></td>
<td class="indent"><font size="2"><?php echo $row->districtNameEng;?></font></td>
<td class="indent"><font size="2"><?php echo $row->amphurName;?></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="7" 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>
|