If i'm reading your code in the right way, i think you can better use the file_exists function available in php
Read the manual at: http://www.php.net/manual/nl/function.file-exists.php
Many success
Coert Metz
Sebastian wrote:
hello,
i have this snippet of code, from what i can tell it works .. just wondering if i am doing it in a correct way, or if there is a better, or faster way. thanks for any input.
$fp = @fopen("$_SERVER[DOCUMENT_ROOT]/images/$mapname.jpg","r");
if ( $fp ) { $mappic = "<img border=\"0\" src='/images/mappics/$mapname.jpg'></a"; } else { $mappic = "<img border=\"0\" src='/images/noimage.gif'>";
} @fclose ( $fp );
echo $mappic;
cheers, - Sebastian
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php