Re: [PHP] issue with sending a request_uri in a url

2003-09-11 Thread Chris Shiflett
> something.php?action=delete&return_urlsomeother.php%3faction%3dedit%26id%3d1 There should be an equal sign between return_url and someother, in case you try to copy/paste that for some reason. Chris = Become a better Web developer with the HTTP Developer's Handbook http://httphandbook.org/

Re: [PHP] issue with sending a request_uri in a url

2003-09-11 Thread Chris Shiflett
--- [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 tha

Re: [PHP] issue with sending a request_uri in a url (ignore)

2003-09-11 Thread daniel
back to urlencode it worked this time, really sorry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] issue with sending a request_uri in a url

2003-09-11 Thread daniel
Aplogies, that was my app although i am having more issues now, i use switch statements on a get action variable. here is the full link manage.php? action=deleteconfirm&asset_modelID=82&table=asset_models&return_url=/assets/ manage.php?table=asset_models&ID=82&action=edit it now things its a edi

[PHP] issue with sending a request_uri in a url

2003-09-11 Thread daniel
Hi there, i have come to a solution, due the fact that the client does not store the http_referer on a javascript location.href, is to send the refering url into the url, there is an issue though say it looks like something.php?action=delete&return_url=someother.php?action=edit&id=1 it will come