New to php and I'm trying to have 8 rows with 2 cells using a while loop. I can't seem to get it right, I've played with the code a lot but it always comes out wrong. A point in the right direction would be appreciated
<section class="grabber2">
<?php
$x = 0;
echo '<tr>';
while ($x < 4){
echo
'<td> phrase 1!</td>',
'<td> phrase 2!</td>';
$x++;
}
?></tr>
</section>