I figured out that one server only supports the following code:
setcookie ("cwmr1a", "$firstn");
Whereas another server supports any of the following code:
setcookie ("cwmr1a", "$firstn");
setcookie ("cwmr1a", $value,time()+3600); / expire in 1 hour /
setcookie ("cwmr1a", $value,time()+3600, "/$cdirectory/", "$cdomain", 1);
Why would this happen. And is there a way to have more than 20 cookies?
Thanks.