1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
if ($this->offres != null)
{
<table id="resultat" class="sortable">
<thead>
<tr>
<th> Date de parution </th>
<th> Code Postal </th>
<th> Intitulé de l'offre </th>
</tr>
</thead>
<?php foreach ($this->offres as $offre): ?>
<tbody>
<tr>
<td> <?php echo date( 'd-m-Y' , strtotime($offre->offre_date_creation)); ?></td>
<td> <?php echo $offre->offre_code_postal; ?></td>
<td> <a href="<?php echo $this->baseUrl;?>/recherche/afficher?id=<?php echo $offre->offre_id;?>" ><?php echo $offre->offre_intitule; ?></a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table><?php
}
else
{
echo "<h1> Aucun résultat </h1>";
} |
Partager