|
Posted by Philip Hallstrom on 09/01/05 22:53
> Is there a way, using PHP, to determine if session cookies are enabled (or
> disabled) in the user's browser privacy settings?
Set a cookie using setcookie().
Then use an HTML meta refresh (or javascript, just not
Header("Location...) to redirect them to another page.
On that page, see if the cookie value is set.
If it is, they have cookies enabled. If it's not, they don't.
-philip
[Back to original message]
|