--- [EMAIL PROTECTED] wrote:
> something.php?action=delete&return_url=someother.php?action=edit&id=1
> 
> it will come out as
> 
> something.php?action=delete&return_url=someother.php
> 
> i tried urlencode but still no luck any ideas?

What did you try to URL encode? You need to encode the URL that is the value of
return_url. So, you want to end up with this:

something.php?action=delete&return_urlsomeother.php%3faction%3dedit%26id%3d1

Hope that helps.

Chris

=====
Become a better Web developer with the HTTP Developer's Handbook
http://httphandbook.org/

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

Reply via email to