<?php echo '<table border="1">'; for ($i=1; $i<= 6;) { echo '<tr><td>'.$i.'</td><td>'.($i+1).'</td></tr>'; $i = $i+2; } echo '</table>'; ?>