เรียนคุณ arsachi รบกวน ขอ โครงสร้างฐานข้อมูลของ StoreMaincatTable และ StoreSubcatTable เพื่อทดสอบ list box
อ่อ เอ๋แปบนึง เด่วเขียนให้ใหม่ ตัวเก่าลบไปแระ เหอๆ
Date :
8 ก.พ. 2550 18:20:16
By :
arsachi
อ่ะ เสดแระ
CREATE TABLE `brand` (
`brand_id` int(11) NOT NULL auto_increment,
`brand_name` varchar(255) NOT NULL default '',
PRIMARY KEY (`brand_id`)
)
-------
CREATE TABLE `model` (
`model_id` int(11) NOT NULL auto_increment,
`model_name` varchar(255) NOT NULL default '',
`brand_id` int(11) NOT NULL default '0',
PRIMARY KEY (`model_id`)
)
-----------
โค้ด
<?
$hostname="localhost";
$user="root";
//$user="sawasdeelanna";
$password="12345";
//$password="dbX2JhwC74";
$dbname="kc_home";
$connect=mysql_connect($hostname,$user,$password);
$db=mysql_select_db($dbname)or die("cannot connect database!");
?>
<html>
<head>
<title> myweb Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<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>
</head>
<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 :
8 ก.พ. 2550 18:35:56
By :
arsachi
คือ อยากได้ฐานข้อมูล ที่คุณ arsachi ตอบไว้ ที่กระทู้ ที่ 12128 นะครับ รู้สึกมันตรงกับที่คิดไว้นะครับ รบกวนหน่อย
Date :
9 ก.พ. 2550 10:13:19
By :
ก้อง
กำ
ก้แก้เอานิดหน่อยหน่อซิครับ เง้อ นิดเด่วเองแล้วตัวนั้นลบไปแล้วด้วย จะให้ทำไงแหล่ะ
Date :
9 ก.พ. 2550 12:53:08
By :
arsachi
Load balance : Server 04