Log in

View Full Version : custom page /w more


Merlin-1764
02-11-2006, 06:32 AM
I need some help :tired: ...

like in this thread (https://vborg.vbsupport.ru/showthread.php?t=98009)
I created a custom page which works fine in the "normal way" of use :nervous:

But i want to insert an rss-feed.
Can anybody help me and tell me how to built in this ?

Here is the code:

<table>
<tr>
<?php
$url = '___URL_OF_RSS-FEED___';
$rss = fetch_rss($url);
echo "<td><b>".$rss->channel['title']."<br></b></td>";
?>
</tr>
<?php
$count=0;
foreach ($rss->items as $item )
{
$title = $item[title];
$text = $item[description];
$url = $item[link];
echo "<tr><td><b>$title</b><br>$text [<a href=$url target='_new'>view whole article</a>]<br></td></tr>";
$count=$count+1;
}
?>
</table>