Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Curt Zirzow
* Thus wrote Bostjan Skufca @ domenca.com: > Hello, > > If I create form like this > > > ... > Now what I am interested in is if this is valid behaviour regarding HTTP > specification and if other platforms support this interference of GET and > POST variables in request? Well the acti

Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Greg Donald
On Tue, 11 Jan 2005 10:26:05 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > There are many scripts I write which provide results for either GET or > POST data interchangably, so that links or forms can be used in the other > pages to fit in with their look/feel. When I need to come in bo

Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Richard Lynch
[EMAIL PROTECTED] wrote: > If your question is a matter of "Is this a good programming practice" then > I think it's ok. There are times when something like this could be really > useful. There are many scripts I write which provide results for either GET or POST data interchangably, so that link

Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread tg-php
omes > from GET or POST, it should be way less effort to copy one array to another > or have a lookup function to return the given value. > > / Lars > > - Original Message - > From: "Bostjan Skufca @ domenca.com" <[EMAIL PROTECTED]> > To: > Sent

Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Bostjan Skufca @ domenca.com
r have a lookup function to return the given value. > > / Lars > > - Original Message - > From: "Bostjan Skufca @ domenca.com" <[EMAIL PROTECTED]> > To: > Sent: Tuesday, January 11, 2005 5:42 PM > Subject: [PHP] $_GET & $_POST

Re: [PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Lars B. Jensen
function to return the given value. / Lars - Original Message - From: "Bostjan Skufca @ domenca.com" <[EMAIL PROTECTED]> To: Sent: Tuesday, January 11, 2005 5:42 PM Subject: [PHP] $_GET & $_POST simultaneously Hello, If I create form like this ... both arrays

[PHP] $_GET & $_POST simultaneously

2005-01-11 Thread Bostjan Skufca @ domenca.com
Hello, If I create form like this ... both arrays contain appropriate variables when submitted: ::: $_GET ::: Array ( [a] => b ) ::: $_POST ::: Array ( [action] => modify ... ) Now what I am interested in is if this is valid behaviour regarding HTTP specification