Bonjour a vous,
Merci a l'avance pour votre aide,
j'aimerais faire un while dans mon code pour avoir un fichier moins long a faire.
Voici mon code :
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 <div class="Rows"> <div class="Categories"> <a href="parts.php?img=VA-1980-1-01-003-000"> <img src="img/va-1980-1/VA-1980-1-01-003-000.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-01-003-010"> <img src="img/va-1980-1/VA-1980-1-01-003-010.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-01-005-000"> <img src="img/va-1980-1/VA-1980-1-01-005-000.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-01-005-005"> <img src="img/va-1980-1/VA-1980-1-01-005-005.png" width="333" height="190"> </a> </div> </div> <div class="Rows"> <div class="Categories"> <a href="parts.php?img=VA-1980-1-03-005-010"> <img src="img/va-1980-1/VA-1980-1-03-005-010.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-03-005-020"> <img src="img/va-1980-1/VA-1980-1-03-005-020.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-03-005-030"> <img src="img/va-1980-1/VA-1980-1-03-005-030.png" width="333" height="190"> </a> </div> <div class="Categories"> <a href="parts.php?img=VA-1980-1-05-006-000"> <img src="img/va-1980-1/VA-1980-1-05-006-000.png" width="333" height="190"> </a> </div> </div>
j'aimerais bien changé ce code pour un while du type :
j'aimerais bien avoir le même principe qu'en html 1 class Rows pour chaque 4 class Categories
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 while ($row = mysqli_fetch_assoc($result)) { echo "<div class=\"Rows\">"; echo "<div class=\"Categories\"> <a href=\"parts.php?img=".$img\"> <img src=\"img/va-1980-1\"".$img\" width=\"333\" height=\"190\"> </a> </div>"; echo "</div>"; }
Merci encore !
Partager