Created
March 1, 2013 15:01
-
-
Save mxlje/5065196 to your computer and use it in GitHub Desktop.
md5 generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$i=0; | |
while ($i<= 40) { | |
echo md5(rand(0,20000)) . "<br>"; | |
$i++; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment