I cant find a way to reset lost/forgotten passwords without deleting the username??? Is it possible for users to reset their own passwords?
Use the following (also running here http://fpiat.multimania.com/hash.php\) to calculate md5 checksum, then update the value in the database. et voila !
<HTML><BODY><p><BR> <?PHP $text = $HTTP_POST_VARS['text']; echo '<FORM NAME="any" ACTION="'.$PHP_SELF.'" METHOD=POST >'; echo '<INPUT type="password" name="text" value='.$text.'>'; echo '<INPUT type="submit" name="submit" value="calculate" >'; echo '</FORM>'; if ($text !='') { echo '</P>Text :<hr>'; echo '<PRE>'.$text.'</PRE><HR>'; echo 'MD5 HASH:<B>'.md5(stripslashes($text)).'</B>'; }
Log in to post a comment.
I cant find a way to reset lost/forgotten passwords without deleting the username??? Is it possible for users to reset their own passwords?
Use the following (also running here http://fpiat.multimania.com/hash.php\) to calculate md5 checksum, then update the value in the database.
et voila !
<HTML><BODY><p><BR>
<?PHP
$text = $HTTP_POST_VARS['text'];
echo '<FORM NAME="any" ACTION="'.$PHP_SELF.'" METHOD=POST >';
echo '<INPUT type="password" name="text" value='.$text.'>';
echo '<INPUT type="submit" name="submit" value="calculate" >';
echo '</FORM>';
if ($text !='') {
echo '</P>Text :<hr>';
echo '<PRE>'.$text.'</PRE><HR>';
echo 'MD5 HASH:<B>'.md5(stripslashes($text)).'</B>';
}