สมมติผมจะใช้จาวาสคริปต์+ajax ในการ get ค่า category โดยใช้ฟังชั่น
function GetCategory(category_id) { var strURL= datapath+"Category.php?category_id="+category_id;
var req = GetXMLHTTP();
if (req) {
req.onreadystatechange = function() {
if (req.readyState == 4) {
if (req.status == 200) { document.getElementById('category').innerHTML=req.responseText;
} else {
alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
}
req.open("GET", strURL, true);
req.send(null);
}
}
ใช้ var strURL= datapath+"Category.php?category_id="+category_id; ส่งค่าไป