|
Posted by Geoff Berrow on 08/04/05 15:17
I noticed that Message-ID:
<1123143244.367683.72890@g44g2000cwa.googlegroups.com> from kiqyou_vf
contained the following:
> while (!empty($row_QCBD_test['test'])){
> print $row_QCBD_test['test'];
> }
You are checking whether $row_QCBD_test['test'] is empty or not.
Whatever it is, it will still be the same next time round the loop. You
need something in there to change the state of $row_QCBD_test['test']
other wise the loop will have no reason to end.
e.g
$x=0;
while($x<10){
print $x;
$x++;
}
//prints 0123456789
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Navigation:
[Reply to this message]
|