Also das was ich jetzt schreibe ist nicht getestet...
function file_exists_extern($url)
{
// Fake the browser type
ini_set('user_agent','MSIE 4.0b2;');
if($dh = fopen("$url",'r'))
{
fclose($dh);
return TRUE;
}
return FALSE;
}