Subversion Repositories Applications.referentiel

Rev

Rev 31 | Rev 178 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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