Subversion Repositories Applications.referentiel

Rev

Rev 31 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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