Re: [PHP] POST vs GET method

2003-01-23 Thread Chris Shiflett
--- Bob Lockie <[EMAIL PROTECTED]> wrote: > On 01/22/03 23:22 John W. Holmes spoke thusly > > > Pretty sure this is an Apache2/PHP bug. It was > > discussed on here in the past few days. > > > > I tried Apache 2.0.44 and PHP 4.3 and it still doesn't > work. :-( Apache 2.0.44 == Apache2 Chris --

Re: [PHP] POST vs GET method

2003-01-23 Thread Bob Lockie
copy today. http://www.phparch.com/ -Original Message- From: Bob Lockie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:33 PM To: php-general Mailing List Subject: [PHP] POST vs GET method PHP Version 4.3.0 Apache 2.0.43 I am having a problem with a post method.

RE: [PHP] POST vs GET method

2003-01-22 Thread John W. Holmes
> Sent: Wednesday, January 22, 2003 10:33 PM > To: php-general Mailing List > Subject: [PHP] POST vs GET method > > > PHP Version 4.3.0 > > > Apache 2.0.43 > > > > I am having a problem with a post method. > > GET method: > _REQUEST['n

[PHP] POST vs GET method

2003-01-22 Thread Bob Lockie
PHP Version 4.3.0 Apache 2.0.43 I am having a problem with a post method. GET method: _REQUEST['name']=value _GET['name']=value _POST['name']= POST method: _REQUEST['name']=valuename=value _GET['name']= _POST['name']=valuename=value I assumed that by using _REQUEST that I could use eithe

Re: [PHP] Post -vs- Get

2001-03-21 Thread Yasuo Ohgaki
Since original poster requests where to look. http://www.php.net/manual/en/language.variables.external.php PHP manual is great reference for PHP programmers. If you haven't read, it is recommended to read. Another link in zend.com http://www.zend.com/zend/tut/ There are many useful links in www.z

Re: [PHP] Post -vs- Get

2001-03-21 Thread Michael Hall
> abc.com?client_no=5 > > Now even though if that person emails you that url, you won't gain > access to it bascause of authentication that is needed, what can happen > is an authorized user could change the 5 in the url to 8, and then see > the information that is there which belongs to client

RE: [PHP] Post -vs- Get

2001-03-21 Thread Stewart Taylor
ortas [mailto:[EMAIL PROTECTED]] Sent: 21 March 2001 10:02 To: php Subject: [PHP] Post -vs- Get I have written a system with authentication to gain access to individual data. Since I am using the post method the command line has something like abc.com?client_no=5 Now even though if that person

[PHP] Post -vs- Get

2001-03-21 Thread Jack Sasportas
I have written a system with authentication to gain access to individual data. Since I am using the post method the command line has something like abc.com?client_no=5 Now even though if that person emails you that url, you won't gain access to it bascause of authentication that is needed, what