Hi There,
I am having a problem setting a cookie. I can set a plain cookie fine such as:
setcookie ("client_id", "$line[id]");
But when I try to set a full cookie like so:
setcookie ("client_id", "$line[id]",time()+60,"/","mydomain.ca",0);
it doesn't work. Is there something wrong with the above?
-Dico