--- Cal Evans <[EMAIL PROTECTED]> wrote:
> I usually just pass this kind of info around on the URL.
> 
>
http://mypage.com/mypage.php?prevURL=http://mypage.com/lastpage.php
> 
> if I have to pass a full query string then I urlencode()
> it first and urldecode() it on the other side.

Just as a bit of advice, you should always URL encode any
data you want to append to the URL like that. Also,
decoding it is superfluous, because the Web server will do
that for you (since URL data is supposed to be URL
encoded).

Chris

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

Reply via email to