hallo,
habe einen countdown mit javascript der eine bestimmte zeit an inaktivität zählt.
wie kann ich jetzt realisieren, dass php nach ablauf der zeit die aktuelle session
beendet?
function timer()
{
if(browserType == 'IE' || browserType == 'OPERA')
{
timeout--;
if(timeout > 0)
{
setTimeout("timer()", 1000);
minute = Math.floor(timeout / 60);
second = timeout % 60;
document.all.timeout.innerHTML = " " + minute + ":" + ((second > 9)? second : "0" + second) + " ";
}
else
{
setTimeout("timer()", 600);
document.all.timeout.title = ""; // clear the title information
if(show)
{
document.all.timeout.innerHTML = " timeout ! ";
show = false;
}
else
{
document.all.timeout.innerHTML = " ";
show = true;
}
}
}
return;
}
habe einen countdown mit javascript der eine bestimmte zeit an inaktivität zählt.
wie kann ich jetzt realisieren, dass php nach ablauf der zeit die aktuelle session
beendet?
function timer()
{
if(browserType == 'IE' || browserType == 'OPERA')
{
timeout--;
if(timeout > 0)
{
setTimeout("timer()", 1000);
minute = Math.floor(timeout / 60);
second = timeout % 60;
document.all.timeout.innerHTML = " " + minute + ":" + ((second > 9)? second : "0" + second) + " ";
}
else
{
setTimeout("timer()", 600);
document.all.timeout.title = ""; // clear the title information
if(show)
{
document.all.timeout.innerHTML = " timeout ! ";
show = false;
}
else
{
document.all.timeout.innerHTML = " ";
show = true;
}
}
}
return;
}
Kommentar