รบกวนช่วยหน่อยค่ะ พอดีต้องการจะดึงค่าจาก listbox 3 list ที่เลือกออกมาแสดง และนำข้อมูลของตารางอื่นบางfiled ที่เกี่ยวของกับการเลือกข้อมูลจาก list ออกมาแสดงด้วย
รบกวนช่วยหน่อยค่ะ พอดีต้องการจะดึงค่าจาก listbox 3 list ที่เลือกออกมาแสดง และนำข้อมูลของตารางอื่นบางfiled ที่เกี่ยวของกับการเลือกข้อมูลจาก list ออกมาแสดงด้วย ลองทำแล้วมันออกมาทั้งหมดแนะนำด้วยนะคะขอบคุณค่ะ
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","root","mysql") or die("Error Connect to Database");
$objDB = mysql_select_db("hospital_tu");
@mysql_query("SET NAMES UTF8");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Searchphonr_TU</title>
<script language = "JavaScript">
//**** List searhphone_section (Start) ***//
function ListSection(SelectValue)
{
frmMain.ddlSection.length = 0
frmMain.ddlDept.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlSection.options[frmMain.ddlSection.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM searchphone_section ORDER BY Sec_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["Build_id"];?>;
strValue = "<?=$objResult["Sec_id"];?>";
strItem = "<?=$objResult["Sec_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.ddlSection.options[frmMain.ddlSection.length]= myOption
}
<?
}
?>
}
//**** List searchphone_section (End) ***//
//**** List searchphone_dept (Start) ***//
function ListDept(SelectValue)
{
frmMain.ddlDept.length = 0
//*** Insert null Default Value ***//
var myOption = new Option('','')
frmMain.ddlDept.options[frmMain.ddlDept.length]= myOption
<?
$intRows = 0;
$strSQL = "SELECT * FROM searchphone_dept ORDER BY Dept_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["Sec_id"];?>;
strValue = "<?=$objResult["Dept_id"];?>";
strItem = "<?=$objResult["Dept_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.ddlDept.options[frmMain.ddlDept.length]= myOption
}
<?
}
?>
}
//**** List searchphone_dept (End) ***//
</script>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
.style2 {
color: #330099;
font-weight: bold;
}
.style4 {color: #FFFFFF; font-weight: bold; }
-->
</style>
</head>
<form name="frmMain" action="" method="post">
<p>
<span class="style2">
อาคาร
</span><span class="style4"></span><span class="style1">.....</span>
<select id="ddlBuild" name="ddlBuild" onChange = "ListSection(this.value)">
<option selected value=""></option>
<?
$strSQL = "SELECT * FROM searchphone_build ORDER BY Build_id ASC ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["Build_id"];?>">
<?=$objResult["Build_name"];?>
</option>
<?
}
?>
</select>
</p>
<p><span class="style2">
หน่วยงาน
</span><select id="ddlSection" name="ddlSection" onChange = "ListDept(this.value)">
</select>
<span class="style1">...</span><span class="style2">
แผนก
</span><span class="style1">.</span><select id="ddlDept" name="ddlDept" >
</select>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
</html>
<?
mysql_close($objConnect);
?>
Tag : PHP, MySQL
Date :
2011-04-24 08:20:54
By :
SIRIWIMON
View :
1041
Reply :
2
ปกติสามารถทำการแทรกเพื่อ input ค่าอื่น ๆ ลงใน textbox ต่าง ๆ ได้จาก event ของ javascript ครับ ลองแทรกดูครับ
ประวัติการแก้ไข 2011-04-24 21:11:30
Date :
2011-04-24 21:11:14
By :
webmaster
Load balance : Server 03