Voila j'ai fait un ptit truc qui doit me sortir les 10 derniers insertion
$req2="select * from forum order by id DESC ";
$que2=mysql_query($req2);
$array2=mysql_fetch_array($que2);
for ($i=0; $i==10; $i++)
{
echo "<font color=red>cat</font> : ".$array2['Category']." |";
echo " <font color=red>nom</font> : <a href=".$array2['url']." target=blank>".$array2['nom']."</a> ";
echo ' <a href="comment.php" alt="comment"><img src="comment.gif" border=0></a><br>';
} |
Donc voila en gros ca doit controler les 10 derniere insertion et en afficher le nom avec l'url en lien, la category et une icone poiur le commentaire.
Or cela ne marche pas du tout rien ne s'affiche
Message édité par Profil supprimé le 10-12-2002 à 17:10:17