Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
$rss = simplexml_load_file('http://feeds.bbci.co.uk/news/england/rss.xml');
echo '<table width="400px" align="center" border="0"><tr><td>';
echo '<h3>'. $rss->channel->title . '</h3>';
foreach ($rss->channel->item as $item) {
echo '<a href="'. $item->link .'">' . $item->title . "</a><br/>";
echo "<p><small>" . $item->pubDate . "</small></p>";
echo "<p>" . $item->description . "</p>";
}
echo '</td></tr></table>';
?>
<?php
$rss = simplexml_load_file('http://feeds.bbci.co.uk/news/england/rss.xml');
echo '<table width="400px" align="center" border="0"><tr><td>';
echo '<h3>'. $rss->channel->title . '</h3>';
$i = 0;
foreach ($rss->channel->item as $item) {
if ($i > 2)
{
break;
}
echo '<a href="'. $item->link .'">' . $item->title . "</a><br/>";
echo "<p><small>" . $item->pubDate . "</small></p>";
echo "<p>" . $item->description . "</p>";
$i++;
}
echo '</td></tr></table>';
?>