listbox ไป เป็นtextbox 2 textbox คือว่าผมมีlistBoxให้เลือกรหัสสินค้า เล้วเมื่อเลือกเเล้วให้เเสดงชื่อ
หลักการง่าย ๆ นะครับ
คือเลือกมาจาก listbox แล้วก็จะได้ค่า value ที่ส่งมาด้วย
ให้นำค่า value นั่นหละ ไป select ออกมาจากฐานข้อมูล แล้วนำมาแสดงใน textbox ที่คุณต้องการ
Date :
15 มี.ค. 2550 01:58:27
By :
deawx
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
function validate() {
if(document.form1.cat2.value=='')
{ alert('Please select cat2 \nกรุณาเลือกหมวดย่อยด้วยจ้า...พ่อคุณ');
document.form1.cat2.focus();
return false;
} else {
return true;
}
}
//-->
</script>
<Form name="form1" method="post" action="post.php"
onSubmit='return validate();' >
<h3>My Form</h3>
<?php // v2 with drop down menu read from Mysql
$cat1 = $_REQUEST['cat1'];
$cat2=$_REQUEST['cat2'];
$sql = "SELECT * from brand Where brand_id='$cat1' ";
$result = mysql_query( $sql );
if (mysql_fetch_array($result) ) {
$current1 = mysql_result($result, 0, 'brand_name');
} else {
$current1= "-กรุณาเลือก-";
}
$sql = "SELECT * from brand"; // cat_label
$result = mysql_query( $sql);
?>
ต้นทาง <Select Name='cat1' onChange="MM_jumpMenu('parent',this,0)">
<option value=<?=$cat1;?> ><?=$current1;?></option>
<option value="<?=$PHP_SELF;?>?cat1=<?=$cat1;?>">-------</option>
<?
While( $fetcharr = mysql_fetch_array($result) ) {
$leaving = $fetcharr['brand_id'];
$leaving1 = $fetcharr['brand_name'];
?>
<option value="?cat1=<?=$leaving;?>"><?=$leaving1;?></option>
<?
}
?>
</Select>
ปลายทาง <Select Name='cat2'>
<?
$sql = "SELECT * from model Where brand_id='$cat1' ";
$result = mysql_query( $sql );
if (mysql_num_rows($result) == 0 ) {
echo "<option>กรุณาเลือกรายการหลัก</option> \n" ;
} else {
echo "<option value=>-กรุณาเลือก-</option> \n" ;
}
While( $fetcharr = mysql_fetch_array($result) ) {
$going = $fetcharr['model_id'];
$going1 = $fetcharr['model_name'];
//echo "<option value=\"?cat1=$leaving&cat2=$going\">$going</option> \n" ;
echo "<option value=\"$going\">$going1</option> \n" ;
}
echo "</Select>";
?>
<input type="submit" value=' ตกลง '>
</Form>
Date :
15 มี.ค. 2550 12:04:00
By :
arsachi
Load balance : Server 05