|
|
|
ช่วยดู code ListMenu/Dropdownlist จังหวัด อำเภอ ตำบล ให้หน่อยครับ |
|
|
|
|
|
|
|
ช่วยดู code ListMenu/Dropdownlist จังหวัด อำเภอ ตำบล ให้หน่อยครับ ให้มันรับค่าเป็นชื่อจังหวัด อำเภอ ตำบล ตอนนี้ค่าที่รับมา
มันเป็นค่าของ ID ในฐานข้อมูลมูลอ่ะครับต้องแก้ไข code ตรงส่วนไหนบ้างครับช่วยชี้แนะให้หน่อยครับ
Code (PHP)
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
include('config/config.php');
echo $_POST['ddlGeo'];
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ThaiCreate.Com ListMenu</title>
<script language = "JavaScript">
//**** List Amphur (Start) ***//
function ListAmphur(SelectValue)
{
frmMain.ddlAmphur.length = 0
frmMain.ddlDistrict.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlAmphur.options[frmMain.ddlAmphur.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM amphur ORDER BY AMPHUR_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["PROVINCE_ID"];?>;
strValue = "<?=$objResult["AMPHUR_ID"];?>";
strItem = "<?=$objResult["AMPHUR_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.ddlAmphur.options[frmMain.ddlAmphur.length]= myOption
}
<?
}
?>
}
//**** List Amphur (End) ***//
//**** List District (Start) ***//
function ListDistrict(SelectValue)
{
frmMain.ddlDistrict.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlDistrict.options[frmMain.ddlDistrict.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM district ORDER BY DISTRICT_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["AMPHUR_ID"];?>;
strValue = "<?=$objResult["DISTRICT_ID"];?>";
strItem = "<?=$objResult["DISTRICT_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.ddlDistrict.options[frmMain.ddlDistrict.length]= myOption
}
<?
}
?>
}
//**** List District (End) ***//
</script>
</head>
<body>
<form name="frmMain" action="" method="post">
Province
<select id="ddlProvince" name="ddlProvince" onChange = "ListAmphur(this.value)">
<option selected value=""></option>
<?
$strSQL = "SELECT * FROM province ORDER BY GEO_ID ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["PROVINCE_ID"];?>"><?=$objResult["PROVINCE_NAME"];?></option>
<?
}
?>
</select>
Amphur
<select id="ddlAmphur" name="ddlAmphur" style="width:200px" onChange = "ListDistrict(this.value)"></select>
District
<select id="ddlDistrict" name="ddlDistrict" style="width:200px"></select>
<input type="submit">
</form>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2014-06-03 16:34:29 |
By :
cmsarin |
View :
923 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dependent List Menu และการกำหนดค่า Default Selected Item
|
|
|
|
|
Date :
2014-06-04 11:09:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าจะบันทึกพวกชื่อ จังหวัด อำเภอ ตำบล ลง database ต้องรับค่าจากตัวแปรไหนครับ ตอนนี้มันบันทึกค่า value ที่เป็น id ตัวเลขเก็บเข้า database ครับ รบกวนหน่อยนะครับ
|
|
|
|
|
Date :
2014-06-04 23:15:03 |
By :
cmsarin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เก็บชื่อ id ถูกแล้วครับ ตอนที่แสดงผลค่อยไป JOIN กับ table เอาครับ
|
|
|
|
|
Date :
2014-06-05 06:20:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อครับเข้าใจล่ะ ขอบคุณมากครับ
|
|
|
|
|
Date :
2014-06-05 15:06:49 |
By :
cmsarin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|