Jump to content

checking if image file exists in folder?


dflow

Recommended Posts

i tried the absolute path and nada !!

 

Then the image does not exist, bad name or you still have the incorrect path. Simple as that.

 

We, sadly, do not know how your server is setup and cannot help you further, you will have to take steps to debug this on your own.

Post the full path to the image here. Also post the full path to your script.

 

Alternatively you can try this:

 

$file = $_SERVER['DOCUMENT_ROOT'] . '/images/image_1.jpg';

 

And see if that works. That will give the correct absolute path to the image using the server variable.

Post the full path to the image here. Also post the full path to your script.

 

Alternatively you can try this:

 

$file = $_SERVER['DOCUMENT_ROOT'] . '/images/image_1.jpg';

 

And see if that works. That will give the correct absolute path to the image using the server variable.

 

ok this worked at the end:

<?php
$filename = 'images/citybanner22.jpg';

if (file_exists($filename)) {
echo "<img src=../$filename>";
} else {
echo "The file $filename does not exist";
}
?> 


 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.