Ben aşağıdaki kodu kullanarak DB güncelleme mesajı göstermeye çalışıyorum
var showtime = setInterval('redirect()',5000);
////Redirecting to DB Status /////
function redirect()
{
xmlhttp = GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Browser does not support HTTP Request");
return;
}
var url="isResultexist.php"
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
I am collecting the response from PHP here and using it to update the Messages on UI Problem here is it works fine 1st time when it called after 5sec but there after return the Same result even DB is updated,
Bu Mozilla ve Google Chrome tarayıcı ile çalışıyor
regards hemant