<?php
header('Content-Type: text/html; charset=utf-8');
$xml = 'http://lenta.ru/rss/top7';
$rss = simplexml_load_file($xml);
foreach ($rss->channel->item as $item)
{
$news_title = $item->title;
$news_link = $item->link;
echo $news_link;
echo $news_title;
}
?>
<?php
header( 'Content-Type: text/html; charset=utf-8' );
$xml = 'http://lenta.ru/rss/top7';
$rss = simplexml_load_file( $xml );
foreach( $rss->channel->item as $key => $item )
{
if( $key == 4 )
return;
$news_title = $item->title;
$news_link = $item->link;
echo $news_link;
echo $news_title;
}
?>