Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
30 jpm 1
<table>
33 jpm 2
	<caption><?=count($message['lignes'])?> lignes en erreur</caption>
30 jpm 3
	<thead>
4
		<tr>
33 jpm 5
		<?php foreach ($message['entete'] as $entete) : ?>
30 jpm 6
			<th><?=$entete?></th>
7
		<?php endforeach; ?>
8
		</tr>
9
	</thead>
10
	<tbody>
33 jpm 11
	<?php foreach ($message['lignes'] as $ligne) : ?>
30 jpm 12
		<tr>
13
		<?php foreach ($ligne as $info) : ?>
14
			<td><?=$info?></td>
15
		<?php endforeach; ?>
16
		</tr>
17
	<?php endforeach; ?>
18
	</tbody>
19
</table>