Jump to content

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";
}
?> 


 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.