-1
I am creating an application that I will have an RSS, and I created this script in PHP:
<?php
// permite requisições a urls externas
ini_set('allow_url_fopen', 1);
ini_set('allow_url_include', 1);
// caminho do feed do meu blog
$feed = 'https://www.conjur.com.br/rss.xml';
// leitura do feed
$rss = simplexml_load_file($feed);
// limite de itens
$limit = 1;
// contador
$count = 0;
// imprime os itens do feed
if($rss)
{
foreach ( $rss->channel->item as $item )
{
// formata e imprime uma string
printf('<a href="%s" title="%s" >%s</a><br />', $item->link, $item->title, $item->title);
// incrementamos a variável $count
$count++;
// caso nosso contador seja igual ao limite paramos a iteração
if($count == $limit) break;
}
}
else
{
echo 'Não foi possível acessar o blog.';
}
And I need to display a block with only one news and then another 4, but the first cannot repeat in the other 4.
What would be the best way to do this? Can someone please help me!