I have a session var I want to create ONLY if it is does not exists, I tired:
if (!$SESSION['coupons']) {
$SESSION['coupons'] = array();
print "here";
}
I am thinking it should only be found as true the first time the page loads, then it should be false every other time... it seems to fire it off (print "here") everytime...