Hi Can someone suggest a way to check for the existance of remotely stored pictures. A check for a 404 would be nice(but I havent a clue how). I tried getimagesize() but it takes forever, and doesn't seem to have a timeout thing.
Use fopen instead. If it returns a file pointer, then the file exists. If it doesn't, then the file doesn't exist.
Diego