HOME > PHP > PHP Forum > ผมมี Code list menu 3 ชั้น แต่อยากให้เมื่อคลิกเลือก list menu แล้วแสดงออกมาในตารางแสดงข้อมูล เช่น เลือก list menu ของภูมิภาคแล้วแสดงออกมาเป็นรายชื่อจังหวัดของภูมิภาคนั้นที่ตารางแสดงข้อมูลด้านล่าง list menu แต่ถ้าเลือก list menu ของจังหวัดก็ให้แสดงอำเภอ
ผมมี Code list menu 3 ชั้น แต่อยากให้เมื่อคลิกเลือก list menu แล้วแสดงออกมาในตารางแสดงข้อมูล เช่น เลือก list menu ของภูมิภาคแล้วแสดงออกมาเป็นรายชื่อจังหวัดของภูมิภาคนั้นที่ตารางแสดงข้อมูลด้านล่าง list menu แต่ถ้าเลือก list menu ของจังหวัดก็ให้แสดงอำเภอ
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("kms");
@mysql_query("SET NAMES UTF8");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>แสดง ภูมิภาค จังหวัด อำเภอ</title>
<script language = "JavaScript">
//**** List Province (Start) ***//
function ListProvince(SelectValue)
{
frmMain.ddlProvince.length = 0
frmMain.ddlAmphur.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlProvince.options[frmMain.ddlProvince.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM province ORDER BY Province_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult["Region_id"];?>;
strValue = "<?=$objResult["Province_id"];?>";
strItem = "<?=$objResult["Province_name"];?>";
mySubList[x,0] = strItem;
mySubList[x,1] = strGroup;
mySubList[x,2] = strValue;
if (mySubList[x,1] == SelectValue){
var myOption = new Option(mySubList[x,0], mySubList[x,2])
frmMain.ddlProvince.options[frmMain.ddlProvince.length]= myOption
}
<?
}
?>
}
//**** List Province (End) ***//
//**** List Amphur (Start) ***//
function ListAmphur(SelectValue)
{
frmMain.ddlAmphur.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlAmphur.options[frmMain.ddlAmphur.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM Amphoe ORDER BY Amphoe_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();