spicymango
Programmer
Following code set the cookie, with out DOMAIN
But when I do the following, i only added DOMAIN
It does not, what am I doing wron here?
Code:
cookiestring="startin="+where+";PATH=/;EXPIRES="+getExpire(12000);
But when I do the following, i only added DOMAIN
Code:
var domain=".visitor";
cookiestring="startin="+where+";PATH=/;DOMAIN="+domain+";EXPIRES="+getExpire(12000);