PHP
- 1 ответ
- 0 вопросов
1
Вклад в тег
var xhr = new XHR(); xhr.open('POST', 'http://tests/register.php?login='+login+'&p='+password, true); xhr.onload = function() { alert( this.responseText ); } xhr.onerror = function() { alert( 'Ошибка ' + this.status ); } xhr.send();
var xhr = new XHR();
var body = 'login=' + encodeURIComponent(login) +
'&password=' + encodeURIComponent(password);
xhr.open("POST", 'http://tests/register.php', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onload = function() {
alert( this.responseText );
}
xhr.onerror = function() {
alert( 'Ошибка ' + this.status );
}
xhr.send(body);