12-15-2009, 05:26 PM
|
#4 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
|
If you want it to repeat if row is NO, then I assume you will want to do it once no matter what. This would be a job for do while.
PHP Code:
do { //do stuff if($endConditionMet) { $row = 'yes'; } } while($row=='no')
|
|
|
|