Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Created May 16, 2016 15:33
Show Gist options
  • Save simplyniceweb/513bc2acbd4fbf076fa91592074fe447 to your computer and use it in GitHub Desktop.
Save simplyniceweb/513bc2acbd4fbf076fa91592074fe447 to your computer and use it in GitHub Desktop.
<?php
$i = 0;
$num = [];
while($i<100) {
$num[] = $i++;
}
shuffle($num);
foreach ($num as $key => $val) {
echo "$key. Number: $val<br>";
}
/* End of file */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment