Re: [PHP] user password managment

2004-12-10 Thread Richard Lynch
Does anybody have any tips or links for creating a system for managing user's passwords. I want to make it so that when a user is created, an email is sent with a link that allows them to set their password. The link should only work for a set amount of time. I have ideas for implementing

Re: [PHP] user password managment

2004-12-10 Thread Brad Ciszewski
i have changed the script around a bit, now it actually shows something, but it doesnt alternate. $thisRow = 0; $query = mysql_query(SELECT * FROM security_images ORDER BY ID DESC, $conn); while($gt=mysql_fetch_array($query)){ extract($gt); if($thisRow % 2 == 0){ $backgroundColor = #CC;

RE: [PHP] user password managment

2004-12-10 Thread Justin Palmer
if($thisRow % 2 == 0){ Should be: if(($thisRow % 2) == 0){ Regards, Justin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] user password

2002-05-27 Thread John Holmes
When you get this working, can you post the IP address or web address of your server? Thanks... ---John Holmes... -Original Message- From: Wayne [mailto:[EMAIL PROTECTED]] Sent: Monday, May 27, 2002 5:55 AM To: [EMAIL PROTECTED] Subject: [PHP] user password Hi Guys, Does