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.

PHP Code:
<?PHP
$hash 
MD5($_GET['md5_1'] . $_GET['salt']);
echo 
$hash;
?&
gt
Though that is simplistic and probably only useful as an example.