Re: [PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
www.SykesCanada.com [EMAIL PROTECTED] - Original Message - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "'Mark McCulligh'" <[EMAIL PROTECTED]>; "'Adam Williams'" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, Au

Re: [PHP] Passing variables between servers

2002-08-21 Thread Seairth Jacobs
MD5 is a one-way hash. There is no way to get information back out of it. If he keeps a copy of the hash locally to comare instead of the original password, this is still as vulnerable as using the original password in this case. The only thing it would protect from is making available the origi

RE: [PHP] Passing variables between servers

2002-08-21 Thread Jay Blanchard
[snip] I thought about encrypting the whole querystring then decrypting it on the other server, but I wanted to keep the address bar clean. I wanted the user not to know they just got passed. If all a sudden there was a lot of data in the address bar they will wonder what it is for. [/snip] How

RE: [PHP] Passing variables between servers

2002-08-21 Thread Daniel Masson
useful. -Mensaje original- De: Mark McCulligh [mailto:[EMAIL PROTECTED]] Enviado el: miƩrcoles, 21 de agosto de 2002 12:23 Para: [EMAIL PROTECTED] Asunto: [PHP] Passing variables between servers I have two server. One running PHP/Linux the other running ASP/2000. The user logins into the

Re: [PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
ECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, August 21, 2002 1:30 PM Subject: Re: [PHP] Passing variables between servers > Just suggestion but why not use md5($password) and then send the result of > that in your GET? > > Adam > > On Wed, 21 Aug 2002, Mark McCullig

Re: [PHP] Passing variables between servers

2002-08-21 Thread Adam Williams
Just suggestion but why not use md5($password) and then send the result of that in your GET? Adam On Wed, 21 Aug 2002, Mark McCulligh wrote: > I have two server. One running PHP/Linux the other running ASP/2000. > The user logins into the PHP server and session variable

[PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
I have two server. One running PHP/Linux the other running ASP/2000. The user logins into the PHP server and session variables are made to hold their username, password, department, etc.. The site from time to time redirect the user to the ASP server. I want to pass the session variable across