We all know the basic
$i = 1;
while ($i<100){
echo $i;
$i++
}
Question: How do I increment $i by a random number between 1 and 5 each time it loops?
|
Exactly like you described it in words: By increment it with a random number between 1 and 5.
|
||||
|
|
|
In one line:
|
|||||
|
|
|
|||||||
|
|
ifis not a looping statement. :| – hjpotter92 Apr 12 '12 at 21:17