Sure thing... here is what I am now using which tells me the file doesnt exist.
<?php
$filename = "../authors/".$authordata->ID.".gif";
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
However, if I use the same URL for am IMG tag then it correctly displays the image. Here is my code I am using for an IMG tag.
<img src="../authors/<?php echo $authordata->ID; ?>.gif" />