|
|
|
|
Bonjour!
|
Bonjour,
<table>
<TR><th> bla bla ...</th><th> bla bla ...</th></TR>
<?
$req= mysql_query(...);
while($data=mysql_fetch_object($req)){
echo '<tr><td>',$data->nom_du_champ1,'</td><td>',$data->nom_du_champ2,'</td></tr>'
}
?>
</table>
|
J'ai développé une classe qui affiche une liste à partir du résultat d'une requête SQL, avec tri, pagination...
|