tags:

views:

59

answers:

1

hi all......

i want to fetch 5 latest blog articles on my new website from my blogs which is on another website ............

iam using php mvc framwork on my new website...........

plz help me with the any example code snippets................

thanks in advance............

+1  A: 

You could use the RSS feed if your blog offers one...

$feed     = simplexml_load_file('http://address.of.your/blogs.rss.feed');
$articles = $feed->xpath('/rss/channel/item[position()<6]'); // RSS 2.0 feed assumed
foreach ($articles as $a) {
    echo (string)$a->title; // echo the title of each article
}
Stefan Gehrig