--- "CPT John W. Holmes" <[EMAIL PROTECTED]> wrote:
> If you are not relying on a cookie based session, then this will
> work. Each login could be assigned a different session ID, so the
> requests for each browser will be different because of the different
> session IDs.

What John is explaining here is that the URLs could be different if that is how
the session ID is propogated, thus making the requests different (they're for
different URLs). So, if you click a link from:

http://example.org/foo.php?PHPSESSID=12345

it could be for:

http://example.org/bar.php?PHPSESSID=12345

Hope that helps.

Chris

=====
My Blog
     http://shiflett.org/
HTTP Developer's Handbook
     http://httphandbook.org/
RAMP Training Courses
     http://www.nyphp.org/ramp

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

Reply via email to