Exemplo n.º 1
0
function get_daily_horoscope($dob)
{
    $sign = get_zodiac_sign($dob);
    $rss = new RSSReader('http://findyourfate.com/rss/dailyhoroscope-feed.asp?sign=' . $sign);
    $nn = $rss->getNumberOfNews();
    $output = '';
    $output .= '<table width="40%"  border="0" cellspacing="0" cellpadding="5" class="box">';
    $output .= '<tr><td>' . $rss->getImage() . '</td></tr>';
    $output .= '<tr><td>' . $rss->getChannelTitle('rsstitle') . '</td></tr>';
    for ($i = 0; $i < $nn; ++$i) {
        $output .= '<tr><td>' . $rss->getItemTitle('rsslink', $i) . '</td></tr>';
        $output .= '<tr><td>' . $rss->getItemDescription('rsstext', $i) . '</td></tr>';
        $output .= '<tr><td>' . $rss->getItemPubdate('rssdate', $i) . '</td></tr>';
        $output .= '<tr><td height="10"></td></tr>';
    }
    $output .= '</table>';
    return $output;
}