I am using AJAX for the first time with PHP and mySQL. I have been following some examples and tutorials on how to use AJAX with INPUT fields.
Ben 2 giriş alanları ile bir form var.
- 1 giriş alanı: 4 basamak Kullanıcı tip
- 2 giriş alanı: 4 basamaklı mySQL db baktı ve bu alanda çıkarılmaktadır.
Benim 2 GİRİŞ alanında çıktı ilgileniyorum ise çoğu örnekler div yıllardan ve yayılma adlı yılında çıktı dayanmaktadır.
Bu nasıl mümkün olur?
Benim js dosyası:
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","include/postalcode.php?q="+str,true);
xmlhttp.send();
}