Je suis en train d'essayer de placer du code Php dans un image flow, mais le problème est que du coup mes images ne s'affichent pas, quelqu'un peut il me dire où j'ai fait une erreur dans mes codes.
Sincèrement merci d'avance vous allez me retirer une très grosse épine du pied.
PHP
<div id="imageflow">
<div id="loading">
<b>Chargement des images ...</b><br/>
<img src="loading.gif" width="208" height="13" alt="loading" />
</div>
<div id="images">
<?php
$base = mysql_connect ('****', '****', '****');
mysql_select_db ('****', $base);
$login = "Camille de flore";
$retour = mysql_query("SELECT * FROM 'oeuvres' Where login=$login ORDER BY id DESC");
while ($donnees = mysql_fetch_array($retour))
{
?>
<img src="reflect.php?img=<?php echo $donnees['chemin']; ?>" longdesc"#" alt="<?php echo $donnees['nom']; ?>" />
<img src="reflect.php?img=img/Maman/P1030796.JPG" longdesc="img/Maman/P1030796.JPG" alt="..." />
<img src="reflect.php?img=img/Maman/P1030799.JPG" longdesc="img/Maman/P1030799.JPG" alt="..." />
<img src="reflect.php?img=img/Maman/P1030800.JPG" longdesc="img/Maman/P1030800.JPG" alt="..." />
<img src="reflect.php?img=img/Maman/P1030804.JPG" longdesc="img/Maman/P1030804.JPG" alt="..." />
<img src="reflect.php?img=img/Maman/P1030809.JPG" longdesc="img/Maman/P1030809.JPG" alt="..." />
<?php
}
?>
</div>
<div id="captions"></div>
<div id="scrollbar">
<div id="slider"></div>
</div>
</div>