Created
May 16, 2016 15:33
-
-
Save simplyniceweb/513bc2acbd4fbf076fa91592074fe447 to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
$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