Hello
I have a problem with this code
<?php
("Content-Type:image/jpg");
$joueurs= array("rb","lb","qb","de");
foreach ($joueurs as $ind)
$v="$ind.jpg";{
$im=imagecreatefromjpeg ("$v");
imagejpeg($im);
imagedestroy($im);
echo ("<br>");
}
?>
It seems that the first pic is destroy by the second one and so on.
What I want to do is to display one pic under the other.
Thank you