$counter = 0; // Starting counterwhile($imgstuff = $db->fetch_array($imgquery)){ eval('$eic_imagebits .= "' . fetch_template('eic_imagebits') . '";'); // ... if($counter == 4) // That counts as 5 images { $eic_imagebits .= '<br />'; // Insert Line Break $counter = 0; // Reset counter } else { $counter++; // Increment counter }}