Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 799 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<? if ($noms) : ?>
        <table>
                <tr>
                        <th>n°</th>
                        <th>langue</th>
                        <th>nom commun</th>
                        <th>nom latin</th>
                </tr>
                <?  $i = 1; foreach ($noms as $id => $valeurs) : ?>
                        <tr>
                                <td><?=$i++?></td>
                                <td><?= $valeurs['langue']?></td>
                                <td><?= $valeurs['nomVerna']?></td>
                                <td><a href="<?= $valeurs['urlFiche']?>"><?= $valeurs['nomSci']?></a></td>
                        </tr>
                <? endforeach; ?>
        </table>
<? endif; ?>