|
|
|
สอบถามเกี่ยวกับ ajax ไม่ทำงานบน host จริง ค่ะ แต่รันบน localhost ได้ปรกติ |
|
|
|
|
|
|
|
อันนี้หน้า menu.php
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=tis-620">
<title>Untitled Document</title>
<script>
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
function list_namesub(id) {
var obj = document.getElementById("subcatalog");
var obj_default = '- Choose -';
if(id ==""){
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
obj[0] = new Option(obj_default,'');}else{
var url = "get_subname.php?id=" + id;
createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET", url, true);
xmlHttp.send(null);
function handleStateChange() {
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
var results = xmlHttp.responseText;
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
arr_list=results.split("/");
if(arr_list.length-1!=0){
for (var i=0; i < eval(arr_list.length-1); i++) {
shop_arr=arr_list[i].split(",");
obj.options[i] = new Option(shop_arr[0],shop_arr[1]);
}}else{
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
obj[0] = new Option(obj_default,'');
}
}
}}
}}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<select name="catalog" id="catalog" onChange="list_namesub(this.value);" style="width:200px">
<option value="">- Choose -</option>
<?
$host="localhost"; //ชื่อ Host
$user="root"; //ชื่อ user
$password="root"; //รหัสผ่านฐานข้อมูล
$dbname="database";
$connection=mysql_connect($host,$user,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$sql="select * from hospital order by id_hos ASC";
mysql_query("SET NAMES tis620");
$dbquery=mysql_db_query($dbname,$sql);
while($result=mysql_fetch_array($dbquery)){
?>
<option value="<?=$result[id_hos];?>"><?=$result[name_hos];?></option>
<?
}
?>
</select>
<br />
<br />
<select name="subcatalog" id="subcatalog" style="width:200px">
<option value="">- Choose -</option>
</select>
</form>
</body>
</html>
อันนี้หน้า get_supname.php
Code (PHP)
<?php
$host="localhost";
$user="root";
$password="root";
$dbname="database";
$connection=mysql_connect($host,$user,$password) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_select_db($dbname) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$sql="select * from professor where id_hos = '$id' ";
$dbquery = mysql_db_query($dbname, $sql);
echo "- Choose -, /";
while ($result = mysql_fetch_array($dbquery)){
echo"$result[name_pro],$result[id_pro]/";
}
mysql_close();
?>
Tag : PHP, Ajax
|
|
|
|
|
|
Date :
2013-04-15 23:46:17 |
By :
minted |
View :
1031 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$host="localhost";
$user="root";
$password="root";
$dbname="database";
$connection=mysql_connect($host,$user,$password) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_select_db($dbname) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$sql="select * from professor where id_hos = '$id' ";
$dbquery = mysql_db_query($dbname, $sql);
echo "- Choose -, /";
while ($result = mysql_fetch_array($dbquery)){
echo"$result[name_pro],$result[id_pro]/";
}
mysql_close();
?>
ลองเรียกไฟล์นี้ตรงๆ ดูครับ มี error หรือเปล่าครับ
|
|
|
|
|
Date :
2013-04-16 06:49:17 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql="select * from professor where id_hos = '$id' ";
อาจจะเป็นไปได้ว่าโฮสต์ของคุณไม่อนุญาตให้ใช้ Register Global แล้ว
ลองเปลี่ยนเป็น
Code (PHP)
$sql="select * from professor where id_hos = '$_GET['id']' ";
|
|
|
|
|
Date :
2013-04-16 10:06:44 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ๆ ทุกคนมาก ๆ เลยค่ะ แก้ได้แล้ว
แก้ตามพี่ itpcc เลยค่ะ
แต่แก้ syntax นิดนึง
Code (PHP)
$sql="select * from professor where id_hos ='".$_GET['id']."'";
|
|
|
|
|
Date :
2013-04-16 11:24:28 |
By :
minted |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เตือนนิดนึงครับ
ระวังพวก SQL Injection ด้วยครับ
Code (PHP)
$sql="select * from professor where id_hos ='".mysql_real_escape_string($_GET['id'])."'";
|
|
|
|
|
Date :
2013-04-16 11:37:23 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-04-16 11:44:17 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|