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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <table width="601" border="0" cellpadding="0" cellspacing="0" class="display" id="example">
<thead style="background-color:#FFF">
<tr>
<th>Date</th>
<th>Expediteur</th>
<th>Objet</th>
<th>Contenu</th>
<th>Etat</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
while ($Ligne=mysql_fetch_object($res))
{
?>
<tr>
<td><?php echo $Ligne->date; ?></td>
<td><?php echo $Ligne->NomPrenom; ?></td>
<td><?php echo $Ligne->objet; ?></td>
<td id="contenu"><?php echo $Ligne->contenu; ?></td>
<td><?php echo $Ligne->Etat; ?></td>
<td><a id="opener">Voir</a> </td>
</tr>
<?php
}
?>
</tbody>
<tfoot>
<tr>
<th><input type="text" name="recherche_par_date" value="Recherche sur date" class="search_init" /></th>
<th><input type="text" name="recherche_par_expediteur" value="Recherche par service" class="search_init" /></th>
<th><input type="text" name="recherche_par_objet" value="Recherche par objet" class="search_init" /></th>
<th><input type="text" name="recherche_par_contenu" value="Recherche par contenu" class="search_init" /></th>
</tr>
</tfoot>
</table>
</div>
<div id="dialog" title="Basic dialog">
<p>???????????</p>
</div> |
Partager