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>';
?>