Subversion Repositories Applications.referentiel

Rev

Rev 31 | Rev 178 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<table>
        <caption><?=count($message['lignes'])?> lignes en erreur</caption>
        <thead>
                <tr>
                <?php foreach ($message['entete'] as $entete) : ?>
                        <th><?=$entete?></th>
                <?php endforeach; ?>
                </tr>
        </thead>
        <tbody>
        <?php foreach ($message['lignes'] as $ligne) : ?>
                <tr>
                <?php foreach ($ligne as $info) : ?>
                        <td><?=$info?></td>
                <?php endforeach; ?>
                </tr>
        <?php endforeach; ?>
        </tbody>
</table>