PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
while ( $row = mysql_fetch_array($result_of_a_query,MYSQL_ASSOC) )
{ if ( $row[column_A] == "shhh" )
{ print "shhh";
};
if ( $row[column_A] == "boo" )
{ print "boo";
};
if ( $row[column_A] == "booger" )
{ $row[column_A] = "boo";
then re-do this passage;
};
I would like to be able to re-evaluate a passage through a loop;
in this example I could ofcourse have placed '...==boo' after the '...==booger' and it would work but this is just a poor example;
my issue is to have the ability to re-evaluate some passage through a while loop, specifically a while loop that is founded on the mysql_fetch_array function;