Re: file_exists() not working correctly?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Chris Haensel wrote:
Good morning list,

I have a _very_ simple function... it is as follows

/**********************************************/

function getgalimage($fzg) {
	$folder		=	"bilder";
	$imgname	=	$fzg."_1.JPG";
	$checkimg	=	$folder."/".$imgname;
	if(file_exists($checkimg)) {
		//echo '<img
src="mod_search_thumbs.php?bild='.$imgname.'&fzg_nr='.$fzg.'">';
		echo '<img src="'.$checkimg.'">';
	} else {
		echo '<div style="display:block; padding:2px; border:1px
solid red;"><a href="'.$checkimg.'">'.$checkimg.'</a></div>';
	}
}

/**********************************************/

Now, the folder "bilder" exists, and I pass the number 0002822 to the
function. Now it should check whether the image file "bilder/0002822_1.JPG"
exists. It never finds the image, even though it exists (I checked it many
times now)

Try a full path:

$folder = '/full/path/to/bilder';

--
Postgresql & php tutorials
http://www.designmagick.com/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux