View Single Post
Old 07-13-2005, 02:59 PM  
AcidMax
Confirmed User
 
Join Date: May 2002
Location: MI
Posts: 1,827
Code:
setcookie('ccbillid', $ccbillid, $cookie_life, '/', '.69gs.com');
$_COOKIE["ccbillid"] = $ccbillid;
Without testing the problem could be the code above. Just try setting it on one page, and then just checking to see if it exists.

Code:
if(!isset($_COOKIE['ccbillid']))
{
   setcookie(...);
}

echo $_COOKIE['ccbillid'];
__________________
Latest MMA news. http://www.mmawrapup.com
AcidMax is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote