View Single Post
Old 12-15-2009, 05:26 PM   #4 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

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'
__________________

Village Idiot is offline  
Reply With Quote