$parent_id = 1000;
while($parent_id) {
do_something;
}
this goes into an infinite loop, cause the condition is always true
$parent_id = 1000;
while($parent_id < 1010) {
do_something;
$parent_id++;
}
keeps doing something till parent_id reaches 1009, you have to keep incrementing the value inside the loop else it will become an infinite loop.
reg
kevin