PHP Boucle pour galerie photo
Fermé
Sleemz
Messages postés
2
Date d'inscription
mercredi 16 décembre 2009
Statut
Membre
Dernière intervention
16 décembre 2009
-
16 déc. 2009 à 17:42
Sleemz Messages postés 2 Date d'inscription mercredi 16 décembre 2009 Statut Membre Dernière intervention 16 décembre 2009 - 16 déc. 2009 à 23:42
Sleemz Messages postés 2 Date d'inscription mercredi 16 décembre 2009 Statut Membre Dernière intervention 16 décembre 2009 - 16 déc. 2009 à 23:42
A voir également:
- PHP Boucle pour galerie photo
- Galerie photo en ligne gratuite - Guide
- Photo aérienne de ma maison - Guide
- Traduction photo gratuit - Guide
- Photo de profil - Guide
- Photo filtre 7 gratuit - Télécharger - Retouche d'image
2 réponses
PhP
Messages postés
1770
Date d'inscription
lundi 11 décembre 2000
Statut
Membre
Dernière intervention
23 décembre 2009
606
16 déc. 2009 à 18:57
16 déc. 2009 à 18:57
Bsr
Comme ceci ca devrait mieux fonctionner ;-) A adapter bien sûr
Comme ceci ca devrait mieux fonctionner ;-) A adapter bien sûr
<html> <body> <table border="0"> <?php $tab="\t"; // Juste pour générer un code propre bien indenté $maxCpt = 4; // Nbr d'images par ligne $cpt = 0; $rowImg = ""; $rowTxt = ""; while ($row_photos = mysql_fetch_assoc($photos)) { $rowImg .= sprintf("<td align=\"center\"><a href=\"%s\" class=\"lightwindow\"><img src=\"%s\" alt=\"\" name=\"photos\" width=\"75\" height=\"100\" id=\"photos\" /></a></td>\n", $row_photos['url_photo'], $row_photos['url_photo']); $rowTxt .= sprintf("<td class=\"commentaire\" align=\"center\">%s</td>\n", $row_photos['commentaire']); $cpt++; if ($cpt==$maxCpt) { echo $tab."<tr>\n"; echo $tab.$tab.$rowImg; echo $tab."</tr>\n"; echo $tab."<tr>\n"; echo $tab.$tab.$rowTxt; echo $tab."</tr>\n"; $rowImg = ""; $rowTxt = ""; $cpt = 0; } }; // Affiche la dernière ligne incomplète si elle existe if ($cpt != 0) { echo $tab."<tr>\n"; echo $tab.$tab.$rowImg; echo $tab."</tr>\n"; echo $tab."<tr>\n"; echo $tab.$tab.$rowTxt; echo $tab."</tr>\n"; } ?> </table> </body> </html>
Sleemz
Messages postés
2
Date d'inscription
mercredi 16 décembre 2009
Statut
Membre
Dernière intervention
16 décembre 2009
16 déc. 2009 à 23:42
16 déc. 2009 à 23:42
joli script, j'essaye de comprendre le tout histoire de pas dormir bete ;)
merci à toi
merci à toi