I am primarily a CSS and HTML guy but I have recently ventured into PHP.
I can't see why this script hangs:
$loop_Until = 10;
while($i < $loop_Until)
{
// do some code here
$loop_Until = $loop_Until + 1;
}
Can anyone please help?
|
|
This is causing an ifinate loop, youo will want to take a look at the php
You are increasing |
|||
|
|
|
Fixed Code
Explanation of your code:
|
|||||||||||||||
|
|
Simplest solution: Replace your "+" with a "-". This will cause the loop to end. Like this:
Let me explain, provide a slightly better solution, and give you a few alternatives. If we assume that $i starts out as smaller than $loop_Until, then adding 1 to $loop_Until with the line You should either subtract from $loop_Until, or add to $i. Subtracting 1 from a variable can be done quickly by doing,
Of course $loop_Until sounds like something you might want to set once, and then have it stay unchanged. In this case, you can set $i and increment that. So first set $i to whatever you want (smaller than $loop_Until, if you want your while loop to run at least once), then:
Incidentally, ++$i is faster than $i++ As Lizard mentioned, the for loop is great for doing this. The two equivalent for loops for the two sections of code above are
and
Just make sure you check that your condition will eventually happen with a few numbers on a piece of paper or in your head. Finally, which of these solutions you pick will depend on whether you want $i or $loop_Until to remain unchanged. If you have multiple loops, and you want to do all of them the same amount of times, it's probably a good idea to leve $loop_Until untouched, and reset $i at the beginning of each loop. |
|||||
|
|
|
|||||||
|