|
|
|
เลือกselectbox 1 แล้ว ทำงานselectbox 2 โดยอ้างอิงข้อมูลจาก selectbox 1 (ช่วยดูโค้ดให้หน่อยครับมือใหม่) |
|
|
|
|
|
|
|
ไม่ทราบว่า code นี้ใช้ได้มั้ยครับ พอดี หามาแล้วลองเอามาแก้ไขแต่ไม่ออกครับ
ออกแค่ข้อมูลแรก ช่วยดูให้หน่อยครับ ผมใช้ดึงข้อมูลจาก tb เดียวอะครับ
**tb car ฟิล brand_car , gene_car , year_car**
Code (PHP)
<?php require_once('Connections/ConnectSW.php'); ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ThaiCreate.Com ListMenu</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
<?php
$intRows = 0;
$strSQL1 = "SELECT * FROM car ORDER BY brand_car ASC ";
$objQuery1 = mysql_query($strSQL1) or die ("Error Query [".$strSQL1."]");
$intRows = 0;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult1["brand_car"];?>;
strValue = "<?=$objResult1["brand_car"];?>";
mySubList[x,0] = strGroup;
mySubList[x,1] = strValue;
if (mySubList[x,0] == SelectValue){
var myOption = new Option(mySubList[x,1])
frmMain.ddlProvince.options[frmMain.ddlProvince.length]= myOption
}
<?php
}
?>
}
//**** List Province (End) ***//
//**** 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
<?php
$intRows = 0;
$strSQL1 = "SELECT * FROM car ORDER BY brand_car ASC ";
$objQuery1 = mysql_query($strSQL1) or die ("Error Query [".$strSQL1."]");
$intRows = 0;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult1["brand_car"];?>;
strValue = "<?=$objResult1["gene_car"];?>";
mySubList[x,0] = strGroup;
mySubList[x,1] = strItem;
if (mySubList[x,0] == SelectValue){
var myOption = new Option(mySubList[x,1])
frmMain.ddlAmphur.options[frmMain.ddlAmphur.length]= myOption
}
<?php
}
?>
}
//**** 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
<?php
$intRows = 0;
$strSQL1 = "SELECT * FROM car ORDER BY gene_car ASC ";
$objQuery1 = mysql_query($strSQL1) or die ("Error Query [".$strSQL1."]");
$intRows = 0;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = <?=$objResult1["gene_car"];?>;
strValue = "<?=$objResult1["year_car"];?>";
mySubList[x,0] = strGroup;
mySubList[x,1] = strItem;
if (mySubList[x,0] == SelectValue){
var myOption = new Option(mySubList[x,1])
frmMain.ddldistrict.options[frmMain.ddldistrict.length]= myOption
}
<?php
}
?>
}
//**** List District (End) ***ตำบล//
</script>
</head>
<form name="frmMain" action="" method="post">
Geography
<select id="ddlGeo" name="ddlGeo" onChange = "ListProvince(this.value)">
<option value="" hidden=""><-- เลือกรหัส --></option>
<?php
$strSQL1 = "SELECT DISTINCT brand_car FROM car ORDER BY brand_car ASC";
$objQuery1 = mysql_query($strSQL1);
while($objResult1 = mysql_fetch_array($objQuery1))
{
?>
<option value="<?php echo $objResult1["brand_car"];?>"><?php echo $objResult1["brand_car"];?></option>
<?php
}
?>
</select>
Province
<select id="ddlProvince" name="ddlProvince" style="width:120px" onChange = "ListAmphur(this.value)"></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>
</form>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2016-12-15 14:23:00 |
By :
tomzone2 |
View :
794 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code รันได้หมดแล้ว ครับขอบคุณครับ
แต่ติดอยู่นิดนึงครับ
อยากให้มันไม่ขึ้นค่าว่าง อะครับไม่ทราบ ว่าต้องใส่โค้ดอะไร ตรงไหน ช่วยทีครับ
Code (PHP)
<?php require_once('Connections/ConnectSW.php'); ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ThaiCreate.Com ListMenu</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
<?php
$intRows = 0;
$strSQL1 = "SELECT * FROM car GROUP BY gene_car HAVING (COUNT(gene_car) > 0)";
$objQuery1 = mysql_query($strSQL1) or die ("Error Query [".$strSQL1."]");
$intRows = 0;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = "<?=$objResult1["brand_car"];?>";
strValue = "<?=$objResult1["gene_car"];?>";
mySubList[x,0] = strGroup;
mySubList[x,1] = strValue;
if (mySubList[x,0] == SelectValue){
var myOption = new Option(mySubList[x,1])
frmMain.ddlProvince.options[frmMain.ddlProvince.length]= myOption
}
<?php
}
?>
}
//**** 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
<?php
$intRows = 0;
$strSQL1 = "SELECT * FROM car ORDER BY brand_car ASC";
$objQuery1 = mysql_query($strSQL1) or die ("Error Query [".$strSQL1."]");
$intRows = 0;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$intRows++;
?>
x = <?=$intRows;?>;
mySubList = new Array();
strGroup = "<?=$objResult1["gene_car"];?>";
strValue = "<?=$objResult1["year_car"];?>";
mySubList[x,0] = strGroup;
mySubList[x,1] = strValue;
if (mySubList[x,0] == SelectValue){
var myOption = new Option(mySubList[x,1])
frmMain.ddlAmphur.options[frmMain.ddlAmphur.length]= myOption
}
<?php
}
?>
}
//**** List Amphur (End) ***อำเภอ//
//**** List District (Start) *** ตำบล//
//**** List District (End) ***ตำบล//
</script>
</head>
<form name="frmMain" action="" method="post">
Geography
<select id="ddlGeo" name="ddlGeo" onChange = "ListProvince(this.value)">
<option value="" hidden=""><-- เลือกรหัส --></option>
<?php
$strSQL1 = "SELECT DISTINCT brand_car FROM car ORDER BY brand_car ASC";
$objQuery1 = mysql_query($strSQL1);
while($objResult1 = mysql_fetch_array($objQuery1))
{
?>
<option value="<?php echo $objResult1["brand_car"];?>"><?php echo $objResult1["brand_car"];?></option>
<?php
}
?>
</select>
Province
<select id="ddlProvince" name="ddlProvince" style="width:120px" onChange = "ListAmphur(this.value)"></select>
Amphur
<select id="ddlAmphur" name="ddlAmphur" style="width:200px" ></select>
</form>
</body>
</html>
|
ประวัติการแก้ไข 2016-12-15 21:54:22
|
|
|
|
Date :
2016-12-15 21:51:20 |
By :
tomzone2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนอื่นต้องคลิกขวา เลือก ตรวจสอบ (ใน Chrome) หรือ ตรวจสอบองค์ประกอบ (ใน Firefox)
จากนั้นก็ดูว่า option ที่เกินมานั้นมันคือค่าอะไร? มาจากฐานข้อมูลหรือไม่ ถ้าใช่ก็ใส่เงื่อนไขเพิ่มว่าไม่เอาค่าว่างตอนที่ WHERE
แต่ถ้าเป็นที่ html form ก็ลบทิ้ง
|
|
|
|
|
Date :
2016-12-16 08:54:27 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|