On Mon, 27 Jan 2003, Guru Geek wrote:

> Hello,
> 
> I'm a recent convert from CGI/Perl and so am still getting my feet wet
> in PHP.
> 
> Here's my code:
> $filename = "http://www.myserver.com/include/sometext.txt";;
> $handle = fopen ($filename, "rb");
> $contents = fread ($handle, filesize ($filename));
[snip]

See:
  http://www.php.net/filesize

You cannot use it with urls.  Also if you can help it, 
don't go through http like this.  But anyway, see
also: file(), fgets(), and include()

Regards,
Philip


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to