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..


-----Original Message-----
From: Steve Buehler [mailto:[EMAIL PROTECTED]]
Sent: Friday, 17 May 2002 2:55 PM
To: Peter; Php
Subject: Re: [PHP] can any one see a problem with this script?


Not sure, but it might be the space that you have after the limit=10

Steve

At 11:39 PM 5/16/2002, Peter wrote:
>hi can any one see a problem with this script .. I am trying to use
>phpbuilder's rss link for a site but am having errors
>
><?php
>
>$content .= "<TABLE BORDER=0 WIDTH=0%>\n<TR>\n";
>$content .= "<TD><B>test</B></TD>\n";
>$content .= "</TR>\n";
>$content .= "<tr><td>\n";
>//line 8 starts {
>$fp = fopen("http://www.phpbuilder.com/rss_feed.php?type=general&limit=10
",
>"r") or die("Error reading RSS data.");
>// } line 8 finishes
>
>fclose($fp);
>
>$content .= "</td></tr>\n";
>$content .= "</TABLE>\n";
>
>echo $content;
>?>
>
>The error is as follows
>
>Warning: php_hostconnect: connect failed in c:\phpdev\www\test.php on line
8
>
>Warning:
>fopen("http://www.phpbuilder.com/rss_feed.php?type=general&limit=10","r";)
>- Bad file descriptor in c:\phpdev\www\test.php on line 8
>Error reading RSS data.
>
>Cheers
>
>Peter
>"the only dumb question is the one that wasn't asked"
>
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php


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



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

Reply via email to