Free automatic/rss content for pharmacy affiliate websites

Discussion in 'Affiliate Programs' started by eclipse, Dec 25, 2005.

  1. #1
    Hi,

    We have a great tool for all pharmacy websites.

    "Pharmacy News" with RSS feed. The feed is located at http://www.pharmacycenter.org/r/feed/rss/. You can use it to build Your own pharmacy news sites. Content is updated daily.

    You can use http://magpierss.sourceforge.net/ . It's free php lib to read RSS Feed. Very easy to use !.

    Here is sample code:

    <? 
    require_once('magpierss/rss_fetch.inc'); 
    
    $rss = fetch_rss('http://www.pharmacycenter.org/r/feed/rss/'); 
    
    foreach ($rss->items as $rss_item) 
    { 
    echo 'Title: <a href="' . $rss_item['link'] . '">' . $rss_item['title'] . '</a><br>'; 
    echo 'Summary: ' . $rss_item['summary'] . '<br>'; 
    } 
    
    ?>
    Code (markup):
     
    eclipse, Dec 25, 2005 IP