I have this code i my page:
session_start();
if (isset($SESSION['detaljer'])){
$temp = $SESSION['detaljer'];
}
$temp[] = array($id,$kategori,$dagar);
$_SESSION['detaljer']= $temp;
All works fine in IE 5 on a Mac, but in NC 4.x the session is still "alive" after closing and reopening the browser.
Is there a bug? What's the way around?