New York Times Technology
$dom = simplexml_load_file("http://feeds.nytimes.com/nyt/rss/Technology"); foreach ($dom->channel->item as $item) { print "
"; print "
"; print $item->title; print "
"; print "
"; } ?>