|
|
|
รบกวนหน่อยครับ listbox ที่ 3 ค่าไม่ออก >> listbox คล้ายๆ กับการ select จังหวัด, อำเภอ, ตำบล |
|
|
|
|
|
|
|
ผมได้ทำตามลิงค์ ในเว็บ thaicreate แต่ผลลัพธ์ไม่ออกดังภาพประกอบ และ code ที่ได้แนบมานี้ รบกวนช่วยหน่อยครับ
ภาพหน้าจอ list ที่ 3 ค่าจะไม่ออก
ภาพตารางข้อมูล หน่วยงาน
ภาพตารางแผนก (ในหน่วยงาน)
ภาพตารางบุคลากร (ในหน่วยงาน, ในแผนก)
ส่วนของ code
Code (PHP)
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("db_hos");
@mysql_query("SET NAMES UTF8");
?>
<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;
$strSQL = "SELECT * FROM tb_sect ORDER BY sect_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?php echo $intRows;?>;
mySubList = new Array();
strGroup = "<?php echo $objResult["id_dept"];?>";
strValue = "<?php echo $objResult["sect_id"];?>";
strItem = "<?php echo $objResult["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
<?php
$intRows = 0;
$strSQL = "SELECT * FROM tb_personal ORDER BY id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$intRows++;
?>
x = <?php echo $intRows;?>;
mySubList = new Array();
strGroup = "<?php echo $objResult["id_dept"];?>";
strValue = "<?php echo $objResult["id"];?>";
strItem = "<?php echo $objResult["surname"];?>";
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
}
<?php
}
?>
}
//**** List Amphur (End) ***//
</script>
</head>
<form name="frmMain" action="" method="post">
Geography
<select id="ddlGeo" name="ddlGeo" onChange = "ListProvince(this.value)">
<option selected value=""></option>
<?php
$strSQL = "SELECT * FROM tb_dept ORDER BY dept_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?php echo $objResult["dept_id"];?>"><?php echo $objResult["name"];?></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>
<?php
mysql_close($objConnect);
?>
Tag : PHP, HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2016-01-29 01:05:12 |
By :
san.saleah |
View :
830 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
View Source ในหน้า Web Browser พวก ข้อมูลถูกอ่านจาก MySQL หรือเปล่าครับ
|
|
|
|
|
Date :
2016-01-29 09:14:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|