คือ ผมส่งค่า id ไปกับ url แบบนี้อะ
var url = 'http://'+server_name+'/po/system/application/views/QryCusName.php?id=' + id ;
ตอนทดสอบกับเครื่องตัวเองก็ได้อยู่แต่พออัพขึ้น server กลับไม่ได้
Code ที่ผมใช้เป็นแบบนี้อะครับ JavaScript
// Start XmlHttp Object
function uzXmlHttp(){
var xmlhttp = false;
try{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
xmlhttp = false;
}
}
if(!xmlhttp && document.createElement){
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
// End XmlHttp Object
function getresult(){
// เอาค่าจาก form มาเก็บลง num1,num2
var id = document.form1.txtCusId.value;
var server_name = document.form1.txtServerName.value;
var result;
var url = 'http://'+server_name+'/po/system/application/views/QryCusName.php?id=' + id ;
if(id == ""){
alert('เกิดข้อผิดพลาด กรุณาระบุรหัสลูกค้า');
document.form1.txtCusId.focus();
return false;
}
xmlhttp = uzXmlHttp();
xmlhttp.open("GET", url, false);
xmlhttp.send(null);
//alert('-->'+xmlhttp.responseText);
result = xmlhttp.responseText;
if (result == ''){
alert('เกิดข้อผิดพลาด กรุณาตรวจสอบรหัสลูกค้า '+id);
document.form1.txtCusId.focus(); txtPo
} else {
document.form1.txtCusName.value = result
document.form1.txtPo.focus();
}
;
}