|
|
|
ใครพอรู้บ้างครับ..... มันเป็นโปรแกรม Drop Down แปลผันแบบ 4 ตัว มันโชว์ข้อมูลตามต้องการแล้วแต่ทำไมมันไม่ส่งค่า |
|
|
|
|
|
|
|
มันเป็นโปรแกรม Drop Down แปลผันแบบ 4 ตัว มันโชว์ข้อมูลตามต้องการแล้วแต่ทำไมมันไม่ส่งค่า ไปหน้า post.php ช่วยดูให้หน่อยนะครับ
อันนี้เป็นไป maunmysql.php ด้านล่างเป็น ไฟล์ post.php
<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.type2.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
include("connect.php");
$type1 = $_REQUEST['type1'];
include("connect.php");
$sql = "SELECT * from type1 Where number1='$s1' ";
$result = mysql_query( $sql );
if (mysql_fetch_array($result) ) {
$current = mysql_result($result, 0, 'type');
} else {
$current = "-กรุณาเลือก-";
}
$sql = "SELECT * from type1 Order by number1"; // cat_label
$result = mysql_query( $sql);
?>
หมวดหลัก <Select Name='type1' onChange="MM_jumpMenu('parent',this,0)">
<?
echo "<option value=$type1>$current</option> \n" ;
echo "<option value=\"$PHP_SELF?type1=$type1\">-------</option> \n" ;
While( $fetcharr = mysql_fetch_array($result) ) {
$val = $fetcharr['number1'];
$label = $fetcharr['type'];
echo "<option value=\"$PHP_SELF?type1=$val&type1=$val\">$label</option> \n" ;
}
echo "</Select>";
?>
หมวดย่อย 1 <SELECT NAME='type2' size=1 onChange="MM_jumpMenu('parent',this,0)" >
<?
$sql = "SELECT * from type2 Where number1 ='$type1' ";
$result = mysql_query( $sql );
if (mysql_num_rows($result) == 0 ) {
echo "<option>กรุณาเลือกรายการหลัก</option> \n" ;
} else {
echo "<option value=\"$val\">-กรุณาเลือก-</option> \n" ;
}
While( $fetcharr = mysql_fetch_array($result) ) {
$val = $fetcharr['number2'];
$label = $fetcharr['type'];
echo "<option value=\"$PHP_SELF?type2=$val&type1=$val\">$label</option> \n" ;
}
echo "</Select>";
?>
หมวดย่อย 2 <SELECT NAME='type3' size=1 onChange="MM_jumpMenu('parent',this,0)" >
<?
$sql = "SELECT * from type3 Where number1 ='$type2' ";
$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) ) {
$val = $fetcharr['number2'];
$label = $fetcharr['type'];
echo "<option value=\"$PHP_SELF?type3=$val\">$label</option> \n" ;
}
echo "</Select>";
?>
หมวดย่อย 3 <SELECT NAME='type4' size=1 >
<?
$sql = "SELECT * from type4 Where number1 ='$type3' ";
$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) ) {
$val = $fetcharr['number2'];
$label = $fetcharr['type'];
echo "<option value=\"$val\">$label</option> \n" ;
}
echo "</Select>";
?>
<br>Email <input type="text" name="email"><br>
<input type="submit" value=' ตกลง '>
</Form>
post.php
<html>
<head>
<title> myweb Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</script>
</head>
<body>
<?php
// switch.php
$t1 = $_POST['type1'];
$t2 = $_POST['type2'];
$t3 = $_POST['type3'];
$t4 = $_POST['type4'];
echo "type1 : $t1<br>";
echo "type2 : $t2<br>";
echo "type3 : $t3<br>";
echo"type4 : $t4<br>";
echo 'รายการหลัก: ' , $_POST['type1'];
echo '<br>ย่อย1: ' , $_REQUEST['type2'];
echo '<br>ย่อย2 : ',$_REQUEST['type3'];
echo '<br>ย่อย2 : ',$_REQUEST['type4'];
echo '<br>Email: '. $_REQUEST['email'];
?>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
8 มี.ค. 2551 11:57:47 |
By :
ทัก |
View :
1488 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหอๆๆๆ อยากขช่วยอ่ะ แต่ขี้เกียจเขียนสคริป เทสต์ อ่ะ เวงกำๆ
|
|
|
|
|
Date :
8 มี.ค. 2551 19:38:45 |
By :
navico |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|