Jump to content

Recommended Posts

Indeed; should be file_exists

 

http://us3.php.net/file_exists

 

buy even beyond that the logic doesn't add up.

 

(file_exist($file)) {

 

} else { echo "<img src=\"$file\"> }

 

You are essentially saying if the file exists do nothing, if the file does not exist then show the image which is the file which apparently doesn't exist?

Link to comment
https://forums.phpfreaks.com/topic/162805-file_exists-help/#findComment-859181
Share on other sites

I am actually using file_exists sorry about that:

 

the code is:

 

if(file_exists("$pictureAlbumsRoot/$name/thumbs/$value")) { //Note the file_exists must

echo '<div id="albumDetailsNode" style="float:left;">';

echo "<img src=\"$pictureAlbumsRoot/$name/thumbs/$value\"> ";

echo '</div>';

} else {

echo 'fail';

}

if i get rid of the if, the picture displays fine, but with the if, else fires. Is tehre anyway to figure out what file_exists considers my root directory to be?

Link to comment
https://forums.phpfreaks.com/topic/162805-file_exists-help/#findComment-860214
Share on other sites

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.