channel->title;
echo $title;
foreach ($rss->channel->item as $item) {
echo "" . $item->title . "";
echo "
" . $item->description;
}
*/
// Load and parse the XML document only 1 result
$rss = simplexml_load_file('http://www.softech.com/rss/');
$link = $rss->channel->item->link;
$anchortext = $rss->channel->item->title;
$pdate = $rss->channel->item->pubdate;
$timestamp = strtotime("$pdate");
$reform = date("M. d, Y", $timestamp);
echo "" . $reform . "
" . $anchortext . "";
?>