|
|
|
ถามเรื่องการส่งค่า php ไปให้ Jquery ใน page เดียวกันหน่อยครับ เพิ่มรายการใน list box |
|
|
|
|
|
|
|
ถ้าต้องการดึงจากดาต้าเบส ใช้ ajax ดึงข้อมูลมา เช่น
Code (JavaScript)
<script type='text/javascript' >
$.ajax({
url: 'test.php',
type: "POST",
data:'parameter ถ้ามี ',
success: function(data) {
$('#show_list').html(data);
}
});
</script>
file test.php
Code (PHP)
include "connect.php";
$query=mysql_query("select * from amphur where เงื่อนไข ");
echo "<select name='xxx'>";
while($row=mysql_fetch_array($query){
echo "<option value='$row[id]' >$row[name]</option>";
}
echo "</select>";
ลองไปศึกษาในเว็บ jquery นะครับ http://api.jquery.com
|
|
|
|
|
Date :
2010-12-08 15:38:26 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|