38 lines
780 B
PHP
38 lines
780 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function findmatch(){
|
|
if(window.XMLHttpRequest){
|
|
xmlhttp =new XMLHttpRequest();
|
|
} else {
|
|
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
|
|
}
|
|
|
|
xmlhttp.onreadystatechange = function(){
|
|
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
|
|
document.getElementById('results').innerHTML = xmlhttp.responseText;
|
|
}
|
|
}
|
|
|
|
xmlhttp.open('GET','search.inc.php?search_text=' + document.search.search_text.value ,true);
|
|
xmlhttp.send();
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<form id="search" name="search">
|
|
Type a name: <br>
|
|
<input type="text" name="search_text" onkeyup="findmatch();">
|
|
|
|
</form>
|
|
|
|
<div id="results"></div>
|
|
</body>
|
|
</html> |