On Friday 17 May 2002 13:26, Peter wrote:
> I have also tried
>
> adding the r option as I only want to read the file as follows
>
> $fp = fopen("http://www.phpbuilder.com/rss_feed.php?type=general&limit=10",
> "r") or die("Error reading RSS data.");
>
> but I still get the same error message..
This works fine for me:
<?php
$fp =
fopen("http://www.phpbuilder.com/rss_feed.php?type=general&limit=10","r");
fpassthru($fp);
?>
Check the archives & bugs.php.net to see whether there are any issues with
fopen() & URLs with Windows.
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
The young lady had an unusual list,
Linked in part to a structural weakness.
She set no preconditions.
*/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php