[PHP] Hiding submitted variable values in location bar of browser !

2002-07-09 Thread Lord Loh.
Use the "POST" Method Use MD5 encryption for additional security === MD5.js= /* * Convert a 32-bit number to a hex string with ls-byte first */ var hex_chr = "0123456789abcdef"; function rhex(num) { var str = ""; for(var j = 0; j <= 3; j++) str += hex_chr.charAt((num

RE: [PHP] hiding submitted variable values in location bar of browser !

2002-07-09 Thread Sachin Keshavan
It would be better to use POST operation like mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 12:34 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] hiding submitted variable values in location bar of browser ! > Hi everyone, > Is there any way to hide my form submitted variables

Re: [PHP] hiding submitted variable values in location bar of browser !

2002-07-09 Thread Axel Tietje
> Hi everyone, > Is there any way to hide my form submitted variables (like > passwords etc) > in the location > bar "http://somedomain.org/checkpassword.php? > password=mypassword" > or atleast show in an encypted form n the location bar. HTH, Axel Tietje -- FLYnet FLYer Kommunikationsge

Re: [PHP] hiding submitted variable values in location bar of browser !

2002-07-09 Thread David Otton
On Tue, 9 Jul 2002 22:09:58 -0400 (EDT), you wrote: >Is there any way to hide my form submitted variables (like >passwords etc) >in the location >bar "http://somedomain.org/checkpassword.php? >password=mypassword" >or atleast show in an encypted form n the location bar. You could use POST rather

Re: [PHP] hiding submitted variable values in location bar of browser !

2002-07-09 Thread Peter J. Schoenster
On 9 Jul 2002 at 22:09, [EMAIL PROTECTED] wrote: > Is there any way to hide my form submitted variables (like > passwords etc) > in the location > bar "http://somedomain.org/checkpassword.php? > password=mypassword" > or atleast show in an encypted form n the location bar. But why bother? Certai

[PHP] hiding submitted variable values in location bar of browser !

2002-07-09 Thread chand
Hi everyone, Is there any way to hide my form submitted variables (like passwords etc) in the location bar "http://somedomain.org/checkpassword.php? password=mypassword" or atleast show in an encypted form n the location bar. /Chandu