View Single Post
Old 2011-01-25, 08:27 PM   #4
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
I don't know the script either, but one thing to be aware of if the password is stored in a database: many scripts don't store the literal password, they store a hash of the password.

In years past I've seen MD5 used quite often for passwords, I don't know what's hot now.

You can get an MD5 hash of a desired password with PHP like so:

Code:
<?php echo md5('your_password'); ?>
(Note: I haven't tested the above code.)
__________________
~Warm and Fuzzy.

Last edited by virgohippy; 2011-01-25 at 08:30 PM..
virgohippy is offline   Reply With Quote