Forum Moderators: coopster
what i am having problem that when user click ADD TO CART first time,it mesgs that session doesn`t exist
i am using add2cart.php file for adding the item in session array and then redirecting it to basket.php for displaying Basket Item
i am checking existance of session array something like that
if(!(isset($_SESSION['arrPid']))
{
print("session expired");
exit;
}
on add2cart.php,i am using ob_Start() in the beginning and ob_end_flush() in the end of file but its also not helping me out
Clicking second time it shows the value in basket
please help me out,i am finding no clue to solve the problem
Thanks
-adann