Page 1 of 1

Can anyone tell me why this php code is not pulling the righ

Posted: Fri Sep 23, 2005 4:32 pm
by pryj
PHP Code:
require_once './rss/rss_fetch.inc';

$url = 'http://www.****.com/forum/e ... 8,17,23,27' ;
$rss = fetch_rss($url);

if ( $rss and !$rss->ERROR) {
foreach ($rss->items as $item ) {
echo ' <table class="tborder" cellspacing="0" cellpadding="3" width="100%">';
echo ' <tr> ';
echo ' <td class="thead"> ';
echo ' ' . $item[title] . ' ';
echo ' </td> ';
echo ' </tr> ';
echo ' <tr> ';
echo ' <td class="tcat"> ';
echo ' . ]Discuss this topic on our Political Forums ';
echo ' </td> ';
echo ' </tr> ';
echo ' <tr> ';
echo ' <td class="alt1"> ';
echo ' ' . $item[description] .' ';
echo ' </td> ';
echo ' </tr> ';
echo ' </table>
';

// echo '

. ]' . $item[title] . '<br / >';
// echo 'Publish Date: ' . $item[pubdate] . ' <br / >';
// echo $item[ description ] . ' </p>' ;
}
} else {
echo 'RSS Error: ' . $rss->ERROR . ' <br / >
' ;
}


It outputs the image below.

Should it not output the thread content?

Posted: Wed Oct 05, 2005 1:23 am
by mohumben
It helps if you post which script you are using. post the file "rss/rss_fetch.inc"
It doesn't seems you have coded the RSS Fetcher.

A side note, you don't have to write echo EVERY new line.

Posted: Sun Oct 09, 2005 9:59 am
by D0M1N0R
LOL!!!

Thats a funny bunch of PHP code,
1st of all, you kinda need to post loation of files and so on, for people to tell why it dont work, if that was the only fault.
2nd your coding.....No bad intentions with this but..Its a mess :)
3rd, if your using this on a website, where are your <?php ?> enclosement tags?

Posted: Sun Oct 16, 2005 12:00 am
by toychoq
what u mean by righ?

Posted: Sat Jan 21, 2006 6:37 am
by kaos_frack
you better first tell what you want to achieve with this script.
then ask why it isn't working