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'];