Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Robert Paulsen
On Tuesday 27 January 2009 2:25 pm, Alpár Török wrote: > php has an md5 function built in. so you can jsut do > > $hash = md5($passwd); Works like a champ. Thanks. Bob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Jim Lucas
Robert Paulsen wrote: > On Tuesday 27 January 2009 12:16 pm, Daniel Brown wrote: >> On Tue, Jan 27, 2009 at 13:12, Robert Paulsen > wrote: >>> When I run the app I find that $_REQUEST is almost empty. it contains >>> PHPSESSID but none of the data submitted through an html form. >> Bring on t

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Alpár Török
2009/1/27 Robert Paulsen > On Tuesday 27 January 2009 2:13 pm, Alpár Török wrote: > > > why don't you just use phps md5() function ? you might mess up something > in > > that process of hashing that you use and you create another, probably > > useless trip to the db. > > > > I just don't know a

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Robert Paulsen
On Tuesday 27 January 2009 2:13 pm, Alpár Török wrote: > why don't you just use phps md5() function ? you might mess up something in > that process of hashing that you use and you create another, probably > useless trip to the db. > I just don't know any better! I'll look it up. Thanks, Bob -

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Alpár Török
2009/1/27 Robert Paulsen > On Tuesday 27 January 2009 12:16 pm, Daniel Brown wrote: > > On Tue, Jan 27, 2009 at 13:12, Robert Paulsen > wrote: > > > When I run the app I find that $_REQUEST is almost empty. it contains > > > PHPSESSID but none of the data submitted through an html form. > > > >

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Robert Paulsen
On Tuesday 27 January 2009 12:16 pm, Daniel Brown wrote: > On Tue, Jan 27, 2009 at 13:12, Robert Paulsen wrote: > > When I run the app I find that $_REQUEST is almost empty. it contains > > PHPSESSID but none of the data submitted through an html form. > > Bring on the code, Rob. Daniel, I

Re: [PHP] Empty $_REQUEST

2009-01-27 Thread Daniel Brown
On Tue, Jan 27, 2009 at 13:12, Robert Paulsen wrote: > > When I run the app I find that $_REQUEST is almost empty. it contains > PHPSESSID but none of the data submitted through an html form. Bring on the code, Rob. -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/

[PHP] Empty $_REQUEST

2009-01-27 Thread Robert Paulsen
Hi, I have a apache2/php app written for php version 4 and have moved it to a system running php version 5: Old: PHP 4.3.10 New: PHP 5.2.6 with Suhosin-Patch 0.9.6.2 When I run the app I find that $_REQUEST is almost empty. it contains PHPSESSID but none of the data submitted through an