Как можно передать несколько переменных через ajax?
<html>
<head>
<meta charset = "utf-8">
<title>Test</title>
</head>
<body>
<button onclick = "send()">Click</button>
<script>
text = prompt("Ваше имя?");
function send(){
var xhr = new XMLHttpRequest();
xhr.open("POST","file.php");
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xhr.send("Text="+text);
xhr.onreadystatechange = function(){
if(xhr.readyState == 4 && xhr.status == 200){
alert(xhr.responseText);
}
}
}
</script>
</body>
</html>
<?php
$inp = $_POST["Text"];
echo "Hello,".$inp.".";
?>