JS / Ajax - Ajax PHP ile değiştir sayfa

0 Cevap php

Ive XMLHTTP kullanarak bir PHP dosyasından veri ile div içeriği değişen bir ajax tipi script var:

function updatelog() {
request = 'messages.php?new='+first+'&time='+lastupdate+'&user='+user;
xmlhttp.open("GET", request ,false);
xmlhttp.send();
document.getElementById("messages").innerHTML=document.getElementById("messages").innerHTML+xmlhttp.responseText;
lastupdate = time();
first = 0;
document.getElementById("messages-window").scrollTop = document.getElementById("messages-window").scrollHeight;
}

I want to redirect the user using header( 'Location: kick.php' ); but it only redirects the XML request, not the whole page. how can i redirect the whole page and not just the request?

0 Cevap