FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » How to create a user friendly URL with parameters?
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: How to create a user friendly URL with parameters? [message #182538 is a reply to message #182537] Sun, 11 August 2013 21:40 Go to previous messageGo to previous message
Robert Heller is currently offline  Robert Heller
Messages: 60
Registered: December 2010
Karma:
Member
At Sun, 11 Aug 2013 16:50:38 -0400 Jerry Stuckle <jstucklex(at)attglobal(dot)net> wrote:

>
> On 8/11/2013 4:09 PM, carapooz(at)gmail(dot)com wrote:
>> Hello,
>> I have a search form using a POST method (not a GET one!).
>> After recieving the request I would like to have my page (the same page) be reloaded on the server with user friendly url in the browser address box.
>> http://exemple.com/spage.php?id=12&ci=13
>>
>
> So why not use the GET method for your form and save yourself the trouble?

Also: it is possible to use $_REQUEST[] as a replacement for *both* $_GET[]
and $_POST[]. Thus the form can be POSTed, but the search page can be accessed
with a URL (eg GET method). If you do this, be sure to validate and check for
spoofed URLs.

>
>> I did it like this:
>>
>> ...
>>
>> page = 'spage.php?id=' . $received['sloc'] . '&ci=' .$received['sdef'];
>>
>> if($redirect == 1){
>> header('Location: ' . $page);
>> exit();
>> }
>> ...
>>
>> And it works on my local computer but it does not work on Godaddy server.
>> How it can be done? And wthat is the best way to make a transfer from POST to GET?
>>
>> Thank you.
>> A+
>>
>
> You didn't give the entire code, so first of all we don't know what
> $redirect contains.
>
> But the most common problem with this type of code is the headers
> already being sent. This will be done by ANYTHING (even white space)
> being sent before the header() call. For instance, is GoDaddy inserting
> something ahead of your code? Or do you have ANYTHING which will send
> output before your header call (even a blank line at the start of the
> file will do this).
>
> If you still can't find your problem, immediately after the <?php in
> your file, add:
>
> error_reporting(E_ALL);
> ini_set('display_errors', '1');
>
> What message(s) is(are) displayed?
>
> Note: Don't leave this code in on a production system.
>

--
Robert Heller -- 978-544-6933 / heller(at)deepsoft(dot)com
Deepwoods Software -- http://www.deepsoft.com/
() ascii ribbon campaign -- against html e-mail
/\ www.asciiribbon.org -- against proprietary attachments
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Please evaluate my cache-control & pragma etc. code
Next Topic: Re: Sexy CATHERINE ZETA JONES Sex Scandals
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Sep 28 03:15:52 GMT 2024

Total time taken to generate the page: 0.04393 seconds