Exemplo n.º 1
0
<?php

include 'FeedParser.php';
$Parser = new FeedParser();
$Parser->parse('http://www.sitepoint.com/rss.php');
$channels = $Parser->getChannels();
$items = $Parser->getItems();
?>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Testing the PHP Universal Feed Parser</title>
	<style type="text/css">
	body{
		padding: 0px;
		margin: 50px 150px;
		border: 1px solid #ddd;
		font-family: verdana, arial;
	}
	
	h1#title {
		background-color: #eee;
		border-bottom : 1px solid #ddd;
		margin: 0px 0px 15px;
		padding:10px;
		text-align: center;
	}
	h1#title a{
		font-size: 18px;
	}