md5gen

echo md5($_POST['md5'];

I use this as an easy way to create a hash for passwords before I build out registration forms. There are lots of them on the web, this one is as simple as it gets. It just echos the input from a form through the PHP function md5(string)

Enter something in this field to generate an md5 hash.


Comments are closed.