Some (better than my previous) step-by-step example:
First of all you want to have 5 numbers, that is why you do the loop. That could be written as a counter from 0 to 4:
for ($i = 0; $i < 5; $i++) { ...
Then you specify your start value. If you put it into a variable and increase it together with the counter variable, this allows you to count from 1 to 5:
for ($i = 0, $j = 1; $i < 5; $i++, $j++) { ...
^^^^^^ ^^^^
Here $i is the counter and $j contains the value you're looking for.
As this example shows, the logic to determine the number of steps to do has been separated from increasing the loop variable.
Now you need to add a check if $j goes higher than 5, and if it does it should be reset to 1. However, a fine way to do that is to use the modulo operator. That means, before increasing $j, it will be set to the remainder of itself divided by 5. That is the modulo operation, % operator in PHP:
for ($i = 0, $j = 3; $i < 5; $i++, $j %= 5, $j++) { ...
^^^^^^^
And now you've got your for loop that is creating the value.
In this example you can replace the 3 with your random start number. Take care that it is larger than 0 and lower than 6, otherwise at least the first iteration would give you a wrong number.
As you can imagine there are multiple ways how to do that, so this is only one example.