Hi,
I want to get information from each session set, EXCEPT when the session name is 'navigation':
So basically: Create an exception for the session called 'navigation'..
foreach ($_SESSION as $name => $value)
// $name = navn på session: f.eks. 1 eller 2 - $value indeholder antallet der er i kurven)
{
if(substr($_SESSION,0,10) != 'navigation') // Doesnt work
{
echo $name .' har ' .$value.' varer<br />';
}
}
How do I do this, without getting the information from the session called 'navigation'?
Regards, Klemme