PHP With AJAX
PHP With AJAX
AJAX
• AJAX stands for Asynchronous JavaScript and
XML. AJAX is a new technique for creating
better, faster, and more interactive web
applications with the help of XML, HTML, CSS
and Java Script.
• Conventional web application transmit
information to and from the sever using
synchronous requests. This means you fill out a
form, hit submit, and get directed to a new page
with new information from the server.
Example
• Client side html
<html>
<head>
<script>
function showHint(str) {
if (str.length == 0) {
document.getElementById("txtHint").innerHTML = "";
return;
} else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
};
• xmlhttp.open("GET", "gethint.php?q=" + str,
true);
xmlhttp.send();
}
}
</script>
</head>
<body>
• <p><b>Start typing a name in the input field
below:</b></p>
<form>
First name: <input type="text"
onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span
id="txtHint"></span></p>
</body>
</html>
Example
• Server Side Html
<?php
// Array with names
$a[] = "Anna";
$a[] = "Brittany";
$a[] = "Cinderella";
$a[] = "Diana";
$a[] = "Eva";
$a[] = "Fiona";
$a[] = "Gunda";
$a[] = "Hege";
$a[] = "Inga";
$a[] = "Johanna";
$a[] = "Kitty";
$a[] = "Linda";
$a[] = "Nina";
Example
• // get the q parameter from URL
$q = $_REQUEST["q"];
$hint = "";
// lookup all hints from array if $q is different from ""
if ($q !== "") {
$q = strtolower($q);
$len=strlen($q);
foreach($a as $name) {
if (stristr($q, substr($name, 0, $len))) {
if ($hint === "") {
$hint = $name;
} else {
$hint .= ", $name";
}
}
}
}
// Output "no suggestion" if no hint was found or output correct values
echo $hint === "" ? "no suggestion" : $hint;
?>