主题:也是请教“session超时设置”问题 谢谢
看了hxf4244的"session超时设置"的题目后,我做了两个,
但每个里面有一句不会,请朋友们帮忙给填上,并说明哪一个好些,谢谢!
<?php session_start();
interval();
function interval()
{
$s++;
if($s==600)
{
session_unregister(name);
header("location:注册.php");
}
//setTimeout('interval();',1000); 请在这里写类似的php语句
}
?>
<script language=javascript>
interval();
var s=0;
function interval(){
s++;
if(s==600)
{
//session_unregister(name);清在这里写类似的js语句
location="location:注册.php";}
setTimeout("interval();",1000);
}
</script>
但每个里面有一句不会,请朋友们帮忙给填上,并说明哪一个好些,谢谢!
<?php session_start();
interval();
function interval()
{
$s++;
if($s==600)
{
session_unregister(name);
header("location:注册.php");
}
//setTimeout('interval();',1000); 请在这里写类似的php语句
}
?>
<script language=javascript>
interval();
var s=0;
function interval(){
s++;
if(s==600)
{
//session_unregister(name);清在这里写类似的js语句
location="location:注册.php";}
setTimeout("interval();",1000);
}
</script>