Re: [PHP] real password value

2002-12-13 Thread Joseph Guhlin
eeing if it matches the stored, encrypted password. There is no way to decrypt it without brute forcing it. So just assign a new password and mail it to the user. Hope this helps. --Joseph Guhlin http://www.josephguhlin.com/ Was I helpful? Let others know: http://svcs.affero.net/rm.php?r=

Re: [PHP] php4 / sessions

2002-12-13 Thread Joseph Guhlin
it is set before setting it is to: if (!isset($_SESSION['client_filter'])) { $_SESSION['client_filter'] = $client_filter; } That way it will be set before the rest of the script commences. Hope this works for you! If not, I'm not sure what the problem is and someone el