$columns = 4;for($i = 0; $i < $somevalue; $i++){ echo $output[i]; if($i % $columns == 0) { echo '<br />'; //or </tr><tr> or whatever you need. }}