Chris schrieb:
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';
Hi,
please show at your JPG or jpg lower or Uppercase at first. Check if the
file really exists and your server can read of the directory
Regards
Carlos
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php