PHP Javascript belirlenen aralık fonksiyonunu kullanarak IE düzgün denir değil

1 Cevap php

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

1 Cevap

IE yanıt önbelleğe, bu nedenle, sizin isResultexist.php bir sona-başlığı ayarlamak (Mesajı önbelleğe değildir) göndermek için olsun her isteği veya anahtara rastgele bir parametre eklemek için deneyin.