Jump to content

file_exists() Help


baconbeastnz

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

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.