Is someone who can help me; I'm trying to get an image from a folder and show it:
Here is my code, logos is the directory; the problem is that I'm getting only the name of the image!
$handle=opendir('../logos/');
while (false!==($file = readdir($handle)))
{
if ($file != "." && $file != "..")
{
echo "".$file."\n";
}
}
closedir($handle);
Thanks