
<h1>Cris des animaux :</h1>
<?php
$cris = array('Animal' => 'Cri',
    'Huppe' => 'pupule',
    'Rat' => 'couine',
    'Butor' => 'bouffe',
    'Bécasse' => 'croule');
?>
<table border='2'>
<?php
    foreach($cris as $animal => $cri)
    {
?>
        <tr><td><?php echo($animal); ?></td>
        <td><?php echo($cri); ?></td></tr>
<?php        
    }
?>
</table>
