Don wrote:
If I change my browsers
setting to block all cookies, my session variable appears not to increment
and refreshing the screen displays the same text all the time.

You need to pass the session id in the URL if cookies are off. There is a constant, SID, that you may be able to use, or otherwise create it with session_name() and session_id().


$link = 'http://www.yourdomain.com/page.php?'.SID;

--

---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com

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



Reply via email to