Nick Wilson wrote:

* and then Scot L. Harris declared....

Face it, if web sites could override such settings there would be a lot
more malicious web sites out there.


Absolutely. You cant mess with peoples preffered settings. It's EVIL ;-)

Best you can do is make provision for those without cookies enabled:

Use JS,

if (cookies are enabled) {
  set the damn coookie
} else {
  use sessions...
}


Of course, sessions use cookies, so that won't work either. ;-)

You *can* use URL rewriting to have PHP add the session ID to all of your urls and forms, but this isn't fool-proof. If you really want to support non-cookie sessions, you have to add the session id to all of your urls and forms yourself.

--
paperCrane <Justin Patrin>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to