|
|
|
การ select ajax ดึงตาราง sql มา โชว 3 ตาราง เป็นลำดับ |
|
|
|
|
|
|
|
ขออภัยผมไม่เข้าใจคำถามเลยครับ อธิบายเพิ่มเยอะๆหน่อยได้มั้ยครับ
|
|
|
|
|
Date :
2011-08-19 15:32:58 |
By :
phoenekia |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ค่อยเข้าใจคำถามเท่าไหร่
Ajax List Record
|
|
|
|
|
Date :
2011-08-19 15:44:41 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือว่า อันสุดท้ายจะให้โชวตารางขึ้นมา where ไม่มีค่ามา ต้องใช้อะไรเพิ่มอะครับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function show(a){
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
document.getElementById("text").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax2.php?x=" + a,true);
xmlhttp.send();
}
function sh(b){
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
document.getElementById("list").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax3.php?t=" + b,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="" o>
<p>popular :
<label>
<select name="aa" id="aa" onchange="show(this.value);">
<option value="100">--เลือก--</option>
<option value="1">ใช้งานบ่อย</option>
<option value="2">ใช้งานปานกลาง</option>
<option value="3">ใช้งานน้อย</option>
<option value="4">ใช้งานน้อยมาก</option>
</select>
</label>
</p>
<div id="text">text</div>
<div id="list">list</div>
</form>
</body>
</html>
/////////////////////////////////////////////
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
mysql_connect("localhost","root","123");
mysql_query("SET NAMES UTF8");
mysql_select_db("sql");
$sql = "SELECT * FROM website_type WHERE wst_popular ='$x'";
$result = mysql_query($sql);
echo '<select name="select" id="select" onchange="sh(this.value);">';
while($row = mysql_fetch_array($result)){
echo "<option>";
echo $row['wst_name']."</br>";
echo "</option>";
}
echo "</select>";
mysql_close()
?>
</body>
</html>
///////////////////////
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
mysql_connect("localhost","root","123");
mysql_query("SET NAMES UTF8");
mysql_select_db("sql");
$sqll = "SELECT * FROM website WHERE ws_type = '$t'";
$objquery = mysql_query($sqll) or die ("Error Query [".$sqll."]");
?>
<table width="409" border="1">
<tr>
<th width="91"> <div align="center">ws_id</div></th>
<th width="98"> <div align="center">ws_name</div></th>
<th width="198"> <div align="center">ws_type </div></th>
</tr>
<?
while($row = mysql_fetch_array($objquery))
{
?>
<tr>
<td><div align="center"><?=$row["ws_id"];?></div></td>
<td><?=$row["ws_name"];?></td>
<td><?=$row["ws_type"];?></td>
</tr>
<?
}
?>
</table>
</body>
</html>
|
|
|
|
|
Date :
2011-08-19 16:01:51 |
By :
hixor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณจะทำอะไรครับ อธิบายให้ล่ะเอียดครับ
|
|
|
|
|
Date :
2011-08-19 16:14:48 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เลือกอันสุดท้ายไม่ขึ้นครับ
|
|
|
|
|
Date :
2011-08-19 16:22:34 |
By :
hixor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|