başarısız your sayfa html / javascript gönderin.
Eğer başvurulan komut sorgu dizesi parametreleri, $ _GET, ve bu sadece geçirir yazı, isteğe bağlı parametreleri bekliyor.
Eğer senaryoyu değiştirilmiş sürece sorgu dizesinde bilgiler olmadıkça, bu iş olmaz.
Ancak almak ve aynı isteği gönderebilir hem de olabilir.
örneğin
var http = new XMLHttpRequest();
var url = "http://example.com/proxy.php?proxy_url=http://www.google.com";
var params="postvar1=hello&postvar2=goodbye";
http.open("post", url, true);
http.onreadystatechange = function() {
alert("finished");
}
http.setRequestHeader("Content-type","application/x-www-form-urlencoded");
http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");
http.send(params);
kullanılan url sorgu dizesi parametrelerini içerir VE parametreleri ile yazı kullanır fark
veya jQuery:
$.post("proxy.php?proxy_url=http://www.google.com", { postvar1: "hello", postvar2: "goodbye" },
function(data){
alert(data);
},"text");
ya Prototip:
var http = new Ajax.Request("proxy.php?proxy_url=http://google.com",
{ method: "post",
parameters: { postvar1:"hello", postvar2: "goodybe"},
onSuccess: function(text) { alert(text);}
});