I am a a beginner and i made this:
<?php
$numbers = range(1, 100);
shuffle($numbers);
foreach ($numbers as $number) {
echo $number . " ";
}
?>
I thought i could make it work with the out commented code but i don't know what to do anymore after searching so much online, i thought i could copy it(for) and make it work but it copied the same shuffle range instead of separate shuffle numbers.
I want the range from 1 until 100 with numbers only between 1 and 6. That's it.
Thanks for your time.