Skip to content

Instantly share code, notes, and snippets.

@mxlje
Created March 1, 2013 15:01
Show Gist options
  • Save mxlje/5065196 to your computer and use it in GitHub Desktop.
Save mxlje/5065196 to your computer and use it in GitHub Desktop.
md5 generator
<?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