On Tue, 12 Nov 2002 15:55:52 -0800, you wrote:

>It's simple, which is one thing I like about it.  My submit.php looks like
>this:
>
>    <?php
>    session_start();
>    header('Location: ' . $_REQUEST['target']);
[snip]

I'm curious...your redirect doesn't include the session ID, so how you
maintain session information for people who don't have cookies
enabled?  It's always been my experience that trans sid doesn't append
the SID to header redirects.  You have to do it manually (I use the
SID constant for this purpose).

Of course, the above would work for clients that send the appropriate
cookie, but if you're using cookies anyway why go to all this trouble?

I apologize if I'm not understanding what you're trying to
accomplish...

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

Reply via email to