Upload + affichage d'images
Résolu/Fermé
nanaixme
Messages postés
12
Date d'inscription
lundi 11 juin 2007
Statut
Membre
Dernière intervention
14 juin 2007
-
11 juin 2007 à 11:57
thethe - 2 août 2012 à 13:43
thethe - 2 août 2012 à 13:43
A voir également:
- Upload + affichage d'images
- Affichage double ecran - Guide
- Des images - Guide
- Youtube upload - Télécharger - Diffusion
- Windows 11 affichage classique - Guide
- Images enregistrées - Forum Gravure
3 réponses
Camuke
Messages postés
224
Date d'inscription
lundi 7 mai 2007
Statut
Membre
Dernière intervention
12 août 2011
88
11 juin 2007 à 12:42
11 juin 2007 à 12:42
A la fin:
for ($j=0;$j<=$i-1;$j++)
{
//echo".$DESTINATION_FOLDER.'/'.$tab_image[$j].'" ;
$image = '<img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/>' ;
}
Tu stocke ton image dans une variable mais tu n'affiche pas cette variable donc forcement, rien ne s'affiche.
donc soit:
for ($j=0;$j<=$i-1;$j++)
{
$image = <img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/> ;
echo $image;
}
OU
for ($j=0;$j<=$i-1;$j++)
{
echo '<img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/>' ;
}
for ($j=0;$j<=$i-1;$j++)
{
//echo".$DESTINATION_FOLDER.'/'.$tab_image[$j].'" ;
$image = '<img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/>' ;
}
Tu stocke ton image dans une variable mais tu n'affiche pas cette variable donc forcement, rien ne s'affiche.
donc soit:
for ($j=0;$j<=$i-1;$j++)
{
$image = <img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/> ;
echo $image;
}
OU
for ($j=0;$j<=$i-1;$j++)
{
echo '<img src="'.$DESTINATION_FOLDER.'/'.$tab_image[$j].'"/>' ;
}
nanaixme
Messages postés
12
Date d'inscription
lundi 11 juin 2007
Statut
Membre
Dernière intervention
14 juin 2007
20
11 juin 2007 à 14:22
11 juin 2007 à 14:22
Oui logique, ca aide d'afficher la variable, ca marche correctement mnt. Merci