Hi,
I have a problem with the session var.
On one page I have this code:
session_start();
if (empty($SESSION['cart'])){
$SESSION['cart'] = 1;
}
Now when I go to a different page and try to see it (echo $_session['cart']), the var is empty...
What is that I am doing wrong?
Thanks,
Assaf