Well for one that won't work if register_globals is turned off, which it is by default, so it was hashing two null values.
Though that is simplistic and probably only useful as an example.PHP Code:<?PHP
$hash = MD5($_GET['md5_1'] . $_GET['salt']);
echo $hash;
?>




Reply With Quote