The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
custom page /w more
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: 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> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|