DaMouse:
Try looking at www.php.net/fopen : the 3rd comment should work:
To check if a file exists using http or ftp use the following:
$fp = @fopen("http://www.someurl.com/testfile.php3","r";);
if ($fp)
{ print"The file exists!"; }
else
{ print"The file does not exi
At 10.25 26/06/2002 -0500, Anthony Ritter wrote:
>I have a question about the PHP function file_exists():
>
>This is taken from a textbook entitled "PHP Professional Projects" by
>Wilfred, Gupta, Bhatnagar (Premier Press 2002 - ISBN1-931841-53-5) on page
>261 under the chapter titled "Handling Fil