![]() |
|
|
+ Search |
![]()
|
Mar 15th, 2000 19:14
Dave Garth, Dave Martindale,
To identify a user with a cookie you could give them a userID:
$userID = uniqid(rand());
setcookie("userID",$userID,time()+6000,"/path/","domain",0);
then to identify them check the $userID variable.