<?php $feed = 'http://feeds.feedburner.com/w3mentor?format=rss'; $rss = fetch_rss($feed); print "<ul>\n"; foreach ($rss->channel as $key => $value) { print "<li>$key: $value</li>\n"; } print "</ul>\n"; ?>
Copyright � 2010 Dotfluent Network. Use of this web site constitutes acceptance of the w3mentor Terms of Use and Privacy Policy.