J'ai une requete qui s'affiche avec WHILE... dans cette boucle j'affiche un tableau avec du texte et des images.
Je veux ajouté une popup en ajax quand on passe le curseur sur limage du produits. Le contenu de cette popup est dans un tableau et basé sur la requete. donc je dois linséré dans la boucle. Malheureusement, je vais vous montré mon code... l'affichage des éléments est... pas vraiment belle...
$query = mysql_query("SELECT * FROM objects WHERE cat='$sort_cat' AND game LIKE '$sort_game' ORDER BY id DESC") or die(mysql_error());
echo "<table style=\"width: 100%\">";
echo "<tr><td></td><td></td><td></td><td>Article</td><td>Cout</td></tr>";
while ($fetch = mysql_fetch_array($query) )
{
$cat = $fetch['cat'];
$variable = explode('.',$cat);
echo "<div class=\"bubbleInfo\"><div><tr>";
echo "<td><img src=\"img/objects/".$fetch['cd']."/cat_".$fetch['cat']."/".$fetch['ul_icon']."\"></td>";
echo "<td><img src=\"img/gm_".$fetch['cd'].".png\"></td>";
echo "<td><img src=\"img/cat_".$variable[0].".png\"><img src=\"img/cat_".$fetch['cat'].".png\"></td>";
echo "<td>".$fetch['title']."</td>";
echo "<td>".$fetch['cost']."</td>";
echo "</tr></div>";
echo "<table class=\"popup\"><tbody><tr><td id=\"topleft\" class=\"corner\"></td><td class=\"top\"></td><td id=\"topright\" class=\"corner\"></td></tr><tr><td class=\"left\"></td><td class=\"popup-contents\">";
echo $fetch['text']."</td><td class=\"right\"></td></tr><tr><td class=\"corner\" id=\"bottomleft\"></td><td class=\"bottom\"><img width=\"30\" height=\"29\" alt=\"popup tail\" src=\"img/blue-style/bubble-tail2.png\"/></td><td id=\"bottomright\" class=\"corner\"></td></tr></tbody></table></div>";
}
echo "</table>";