Quote of the day : "Tell yourself it's easy, and it's true." Vladimir & Dimitri

Next quote in 18.1 hours. [suggest a quote]

String to MD5

This script returns the MD5 hash of a string.

The script in action

The MD5 of Lol @ the guy coming here after Googling for Mandy Moore :) is :
e365692167c426183780c1a956e37954
 :

The source

<?php
if(!isset($_POST["mandymoore"]))$mandymoore="Lol @ the guy coming here after Googling for Mandy Moore :)";
else $mandymoore=$_POST["mandymoore"];
echo 'The MD5 of <i>'.$mandymoore.'</i> is :<br/>'.md5($mandymoore).'<br/>
<form action="'.$full_self.'" method="post"><div>
<label for="mandymoore">String</label> : <input type="text" name="mandymoore" id="mandymoore" size="50" value="'.$mandymoore.'" />
<input type="submit" value="Gimme gimme the MD5" /></div>
</form>';
?>
Comments :
THANKS!!! (raghavsk9, on Tue, 15 Apr 2008 20:15:46 +0200) Report Reply
Newcomer You really saved my life!!! Was locked out of my own drupal site 'cause I lost the password... needed md5 converter to manually update password in MySQL database... THANKS A LOT!!!
[Add a comment]