Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple cookie question

Status
Not open for further replies.

spicymango

Programmer
May 25, 2008
119
CA
Following code set the cookie, with out DOMAIN


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);
It does not, what am I doing wron here?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top