i have following code using php its work but i dont know how to implementation into whmcs
display in client area or whmcs footer (link rss code only for example )
<?php
$rss = simplexml_load_file('http://feeds.bbci.co.uk/news/england/rss.xml');
$feed = 0;
foreach ($rss->channel->item as $item) {
if($feed<4){
echo '<div><a href="'. $item->link .'" title="'.$item->title.'">' . $item->title . "</a></div>";
}
$feed++;
}
?>
anyone please help hook or some thing
mention @brian! 😁