function download() {
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()
{ //alert(xmlhttp.readyState);
if(xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert (xmlhttp.responseText);
}
}
xmlhttp.open("GET","import.php?file="+document.getElementById('uploaded_file').value,false);
xmlhttp.send();
// location.reload(true);
}
Ben uyarısı koymak ve xmlhttp.readyState
o zaman onun durumu 4 çevirmek yaptığı bana gösterir ve gitmek yok izlemek eğer deyimi eğer uyarı ile onu izlemek yoksa, o zaman eğer gitmez deyim ama ben veritabanında değişiklikleri görebilirsiniz çünkü import.php çalışma olduğunu biliyorum. Ben ne oluyor bilmiyorum ... herkes olabilir yardım.
Teşekkürler