MD5-Hashwert aus Passwort erzeugen

Message-Digest Algorithm 5

Datei md5hash.php mit folgendem Inhalt erzeugen:

<?php
$password = 'MyPassword';
$salt = mt_rand( 10000, 99999 );
$encrypted = 'salt:' . $salt . ' md5:' . md5( $salt . $password );
echo $encrypted;
?>