News from the Aerospace about rockets, satellites and everything else . . .
{source}
<?php
$rss = simplexml_load_file('https://www.google.com/alerts/feeds/08386621196318372891/17353385907151640690');
//print_r($rss);
//echo "<hr>";
$firstnews='';
foreach ($rss->entry as $item) {
//echo "<br>###";
$url = $item->link['href'];
$title=$item->title;
$published=$item->published;
$isopub=substr($published,0,10).' '.substr($published,11,8);
$content=$item->content;
//echo "<br>URL:$url";
//print_r($item);
echo "<br><b><a href='$url' target='_blank'>$title</a></b> ($isopub)";
echo "<br>$content";
if($firstnews=='') $firstnews="<b>$title</b><br>$content<br>$isopub<br>More . . .";
}
//file_put_contents("/public_html/cms/news.txt",$firstnews);
?>
{/source}