Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Word of the Day</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="http://www.netvibes.com/api/0.3/style.css" />
<script type="text/javascript" src="http://www.netvibes.com/api/0.3/emulation.js"></script>
</head>
<body>
<?php
require_once('magpierss/rss_fetch.inc');
$url = 'http://dictionary.reference.com/wordoftheday/wotd.rss';
$rss = fetch_rss($url);
foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
$desc = $item[description];
$mySplit = explode(": ", $desc, 2);
echo "\t<a href=\"".$url."\" style=\"font-weight: bold;\">".$mySplit[0].":</a> ";
echo $mySplit[1]."\n";
}
?>
<!-- You might also look at http://wordsmith.org/awad/rss1.xml, which does not require additional parsing -->
</body>
</html>