這裏是我用於會話的代碼。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已經開始在頁面的頂部? –