Affichage photo entête de chaque album (php mySQL)
Résolu/Fermé
MAZ
-
2 mai 2014 à 04:59
loupix57 Messages postés 316 Date d'inscription mercredi 20 mars 2013 Statut Membre Dernière intervention 1 juin 2015 - 9 mai 2014 à 19:48
loupix57 Messages postés 316 Date d'inscription mercredi 20 mars 2013 Statut Membre Dernière intervention 1 juin 2015 - 9 mai 2014 à 19:48
A voir également:
- Affichage photo entête de chaque album (php mySQL)
- Album photo partagé - Guide
- Google photo album partagé - Guide
- Photo aérienne de ma maison - Guide
- Photo de profil - Guide
- Télécharger toutes les photos de google photo - Guide
1 réponse
loupix57
Messages postés
316
Date d'inscription
mercredi 20 mars 2013
Statut
Membre
Dernière intervention
1 juin 2015
14
2 mai 2014 à 13:33
2 mai 2014 à 13:33
Je pense :
$id = $$req['id'];
$dir = "admin/ALBUMS/".$id."/Mini/";
$id = $$req['id'];
$dir = "admin/ALBUMS/".$id."/Mini/";
3 mai 2014 à 01:17
Merci merci en tout cas!
5 mai 2014 à 03:24
<?php
// on crée la requête SQL : on va chercher id, nomAlbum, photoEntete, description de la table "MesAlbums"
//et on les ordonne par id
$sql = 'SELECT id, nomAlbum, photoEntete, description FROM MesAlbums ORDER BY id';
// on envoie la requête
$req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
// on fait une boucle qui va faire un tour pour chaque enregistrement ,
// en gros tant qu'il y aura encore un album dans la table
while($data = mysql_fetch_assoc($req))
{
$dir = "admin/ALBUMS/" . $data['id'] . "/Mini/";
// on affiche les informations de l'enregistrement en cours
echo "<div class='box-item'>";
echo '<a href="album.php?id='.$data['id'].'&nomAlbum='.$data['nomAlbum'].'">';
echo "<span class='image-container'>";
echo "<img src='".$dir.$data['photoEntete']."' width=200 height=150/>";
echo "</span>";
echo "<strong>".$data['nomAlbum']."</strong></br>";
echo '<span class="date">'.$data['description'].'</span>';
echo '</a>';
echo "</div>";
} ;
echo "<div class='spacer'></div>";
echo "</div>";
mysql_close($link);
?>
9 mai 2014 à 19:48