On Mon, 2005-11-07 at 20:45 +0100, Gustav Wiberg wrote: > Hi there! > > File_exists doesn't seem to work with URLs that point to another domain. > What to use? > > $x = fopen(http://www.stammis.com/getstart.php); > if file_exists($x) .... You are trying to check if a file pointer exists. You want to check if the file exists. Try: if( file_exists( "http://www.stammis.com/getstart.php" ) ) .... -- Jasper Bryant-Greene General Manager Album Limited e: jasper@xxxxxxxxxxx w: http://www.album.co.nz/ b: http://jbg.name/ p: 0800 4 ALBUM (0800 425 286) or +64 21 232 3303 a: PO Box 579, Christchurch 8015, New Zealand -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php