Re: delayed passing of values in form

From: Robert-Reinder Nederhoed <info(at)nederhoed(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-18 13:39:07
Message-ID: 1047994747.3e77217b60bcd@webmail.nederhoed.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Hello Ryanne,

Is it a problem? What was the idea of posting?

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\"

Greetings, Robert-Reinder (rr(at)sodutch(dot)com)

http://rr.sodutch.com/

--
Een papegaai is geen olifant

-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

Responses

Browse pgsql-php by date

  From Date Subject
Next Message ryanne cruz 2003-03-19 16:33:23 Re: icon on website
Previous Message ryanne cruz 2003-03-18 12:00:03 Re: delayed passing of values in form