Hi all:
I am successfully setting a cookie (almost). The following works fine. it displays the POSTED info as expected:
setcookie("cartPromoterInf", $_POST["promoterEmail"], time()+3600);
echo $_COOKIE["cartPromoterInf"];
But when I change it to:
setcookie("cartPromoterInfo", $_POST["promoterEmail"], time()+3600);
echo $_COOKIE["cartPromoterInfo"];
echo $_COOKIE["cartPromoterInfo"] reads ARRAY
Is there some size limit setting to the name of a cookie???????
Thanks all