cs_Anthomicro
Messages postés9433Date d'inscriptionmardi 9 octobre 2001StatutMembreDernière intervention13 avril 20078 31 juil. 2005 à 00:44
Salut,
$folder = 'photos';
$dossier = opendir($folder);
$i=0;
while (($Fichier = readdir($dossier))!==FALSE)
{
if ($Fichier ==='vincent-1.jpg' AND $i===0)
{
$nomFichier = $Fichier;
echo '';
}
else
{
$i=1;
//affichage de Vincent 2
}
}
closedir($dossier);
Sinon si tu ne souhaites faire que ça via un seul fichier, autant
utiliser la fonction file_exists() pour savoir si ton fichier
vincent-1.jpg existe
<hr size="2" width="100%">