|
|
|
เช็กบ็อก2 เช็คบ็อก การเขียน sql ที่เราเลือก เช็กบ็อกหนึ่งแล้วอีกเช็คบ็อกหนึ่งก็เปลี่ยนตามเช็คบ็อกแรก |
|
|
|
|
|
|
|
ผมก็ยากได้เหมือนกันครับ โหลดมาแล้วก็ยัง งง อยู่ เพื่อคุณจะเข้าใจลองเอาไปดูแล้วกัน ส่วนใครมีที่เข้าใจง่ายกว่านี้ช่วยหน่อยซิ
<html>
<head>
<title>JSunDay.COM - PHP + JavaScript</title>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
</head>
<body>
<?php
$host = "localhost";
$user = "username"; //Username ที่ใช้ในการติดต่อ MySQL
$password = "password"; //Password ที่ใช้ในการติดต่อ MySQL
$conn = mysql_connect($host, $user, $password);
$db = "yourDB"; //ชื่อของ Database
$Sel = "SELECT * FROM StoreMaincatTable ORDER BY S_Maincat_Name ASC ";
$ExecSelMain = mysql_query($db, $Sel);
?>
<script language="JavaScript">
<?
while($RowMain = mysql_fetch_array($ExecSelMain)){
$count = 0;
$maincat = $RowMain[0];
?>
var Array<?echo $maincat;?> = new Array("('Sub Categories','',true,true)"
<?
$SelSub = "SELECT * FROM StoreSubcatTable WHERE S_MaincatID='$RowMain[0]' ";
$ExecSelSub = mysql_query($db, $SelSub);
$nrow = mysql_num_rows($ExecSelSub);
if($nrow > 0){
while($RowSub = mysql_fetch_array($ExecSelSub)){
$i = 1;
$nf = mysql_num_fields($ExecSelSub );
?>
<? if($count == $nrow-1){ ?>
,"('<? echo $RowSub[$i]; ?>')");
<?}else{?>
,"('<? echo $RowSub[$i]; ?>')"
<? } // End Else
$count++;
} // End of While StoreSubcatTable
}else{
?>
);
<?php
}
} // End of While StoreMaincatTable
?>
function LoadProductType(form1,selected) {
var selectedArray = eval("Array"+selected);
while (selectedArray.length < form1.subcat1.options.length) {
form1.subcat1.options[(form1.subcat1.options.length - 1)] = null;
}
for (var i=0; i < selectedArray.length; i++) {
eval("form1.subcat1.options=" + "new Option" + selectedArray);
}
if (form1.maincat.options[0].value == '') {
form1.maincat.options[0]= null;
if ( navigator.appName == 'Netscape') {
if (parseInt(navigator.appVersion) < 4) {
window.history.go(0);
}
else {
if (navigator.platform == 'Win32' || navigator.platform == 'Win16') {
window.history.go(0);
}
}
}
}
}
</script>
<form name="FormSearchCat" method="post">
<table width="400" border="1" cellpadding="5" cellspacing="0" bordercolor="#000000">
<tr><td colspan="2">Search</td></tr>
<tr><td>หมวดหลัก</td>
<td>
<?php
$SelMainS = "SELECT * FROM StoreMaincatTable ORDER BY S_Maincat_Name ASC ";
$ExecSelMainS = mysql_query($db, $SelMainS);
?>
<select name='maincat' onChange = "LoadProductType(document.FormSearchCat,document.FormSearchCat.maincat.options
[document.FormSearchCat.maincat.selectedIndex].value)">
<option value="" selected>Main Categories</option>
<?php while($RowMainS = mysql_fetch_row($ExecSelMainS)){
$maincatC = $RowMainS[0];
?>
<option value="<?php echo $maincatC;?>"><?echo stripslashes($RowMainS[1]);?> </option>
<?}?>
</select>
</td>
</tr>
<tr><td>หมวดย่อย</td>
<td>
<select name='subcat1'>
<option value=""><font face="MS Sans Serif" size="1">None</font></option>
</select>
</td>
</tr>
<tr><td colspan="2"><div align="right"><input type="submit" name="Submit" value="Submit"></div></td></tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
10 ส.ค. 2548 05:39:01 |
By :
ant |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะเอาไปลองดูก็แล้วกัน
|
|
|
|
|
Date :
10 ส.ค. 2548 11:32:26 |
By :
narubet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|