First, I went over all of Kevin Yank's 'Build your own Database Driven Website using PHP & MySQL' and Im still a "Newbie" at this stuff. ( but learning fast)
I think my question should be, How to store user passwords in a MySQL database? I saw something about not storing them in a normal text format in a column.
I looked over http://www.mysql.com/doc/M/i/Miscell...functions.html and was hoping someone could point me in the right direction.
Thanks



)

what i use, along with all the forums software, is md5(). it's great. you can use PHP's or MySQL's md5() function. i would recommend using PHP's; that way the password is encrypted in the query, so it isn't visible in any query logs. if you need to have a "I forgot my password" thing, simply make a new, random password, and send it to them.



Bookmarks