RSS DUPLICATE

Hello,

I have a website where i read rss feeds, by using this script

<?php

// Script

$url = “http://feeds.bbci.co.uk/news/world/africa/rss.xml” ; // url
$rss = simplexml_load_file($url);

if($rss)
{
$items = $rss->channel->item;
foreach($items as $item)
{
$title = $item->title;
$link = $item->link;
$published_on = $item->pubDate;
$description = $item->description;
echo ‘

<a href="’.$link.’"class=“tu_iframe_800x600”>’.$title.’

’;
echo ‘(’.$published_on.’)’;
echo ‘

’.$description.’

’;

}
}

?>

Is it possible to make from a feed like this http://feeds.bbci.co.uk/news/world/africa/rss.xml my own feed for my own website? So i can duplicate it on twitter with the correct link. so that the visitors from twitter go to my page from the article.

regards,
Jeroen

Sponsor our Newsletter | Privacy Policy | Terms of Service