Listing 9.7. Widok
<table>
<tr>
    <th>EN</th>
    <th>PL</th>
</tr>
<?php foreach ($slowa as $slowo) : ?>
    <tr>
        <td><?php echo $slowo->getEn(); ?></td>
        <td><?php echo $slowo->getPl(); ?></td>
    </tr>
<?php endforeach; ?>
</table>
