Even taking the functions out they still didn't work... no worries though, I think I got it to work.
Before I was using this format of the function:
$expTime = time() 24 365;
setcookie("LinuxToday",$LinuxToday,$expTime,"/",".techcentral.ca",0);
Then I changed the cookie so that this is what it looked like:
$expTime = time() 24 365;
setcookie("LinuxToday",$LinuxToday,$expTime);
And it seems to store the information properly... go figure... so if that's the only way it'll work, why does the documentation contain an additional 3 parameters?
Mike