这里是我用于会话的代码。php会话不在链接上工作
<?php
$inactive = 600;
// check to see if $_SESSION['timeout'] is set
if(isset($_SESSION['timeout'])) {
$session_life = time() - $_SESSION['timeout'];
if($session_life > $inactive)
{
session_destroy();
}
else
{
echo "<script>function multiclick()
{
document.getElementById('Image9').style.display='none';
}
</script>";
}
}
$_SESSION['timeout'] = time();
?>
actuly我想,当我的链接点击一次将hide.but它也不working.here是我的网页链接和链接,我的工作就是爱它。 http://shoppingmore.com.hk/index.php?option=com_shopsearch&view=shopdetails&shop_id=139
请任何help.thanks在高级。
你开始会话? 'if(!isset($ _ SESSION)){session_start(); }' –
是sessoin已经开始在页面的顶部? –