Re: delayed passing of values in form

From: Vince Vielhaber <vev(at)michvhf(dot)com>
To: "pgsql-php(at)postgresql(dot)org" <pgsql-php(at)postgresql(dot)org>
Subject: Re: delayed passing of values in form
Date: 2003-03-19 18:02:01
Message-ID: Pine.BSF.4.44.0303191259430.18837-100000@paprika.michvhf.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Tue, 18 Mar 2003, Robert-Reinder Nederhoed wrote:

> My guess is you have sent the variables using POST and have also set a GET-querystring in the form target-url (named 'action'):
>
> action=\"$root/maindemoutputmap.php?prid=".$prid
>
> The default order of processing the query variables is GPC, being GET, POST and COOKIE.
> So your GET querystring is overruled by the POSTed form-data.
>
> If you would like other behaviour, stop passing the $prid in the form action field:
>
> action=\"$root/maindemoutputmap.php\"

Or pass it as a command line argument:

action=\"$root/maindemoutputmap.php?".$prid."\"

and pick it up inside as $argv[0] (provided your config allows command
line args).

Vince.
--
Fast, inexpensive internet service 56k and beyond! http://www.pop4.net/
http://www.meanstreamradio.com http://www.unknown-artists.com
Internet radio: It's not file sharing, it's just radio.

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Christopher Kings-Lynne 2003-03-20 02:09:18 Re: icon on website
Previous Message Vince Vielhaber 2003-03-19 17:36:09 Re: icon on website