Şu anda JavaScript kullanarak ve istediğiniz bir php script (firstrequest.responseXML) göndermek ve bunu yapmak için nasıl bir kaynak bulamadık değilim. Denedim:
var http = new XMLHttpRequest();
var url = "http://.../pref.php";
var params = prefxml; //prefxml is the responseXML object of the last request
http.open("POST", url, true);
http.setRequestHeader("Content-type", "txt/xml");
//I'm not sure which header to use for sending a xml document object.
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
alert(http.responseText);
}
}
http.send(params);
In the php script I tried to catch it via $_POST['params'] but I didn't get it working. Is the request function right? And if yes how can I use the xml document object in the PHP file?
Herhangi bir yardım için teşekkür ederiz. Ben gerçekten bu soruya bir cevap alamadım.