php - while ($row = mysql_fetch_array($result)) - how many loops are being performed? - Stack Overfl
if... $query = "SELECT col1,col2,col3 FROM table WHERE id > 100" $result = mysql_query($query); for this action: while ($row = mysql_fetch_array($result)){ .... } is this doing 1 ......