Dental Library Services at Mouth Carolina Dentistry in Charleston, SC

Dental Library Charleston SC Photo
feed = $feed; } function parse(){ $rss = simplexml_load_file($this->feed); $rss_split = array(); foreach ($rss->channel->item as $item) { $title = (string) $item->title; // Title $link = (string) $item->link; // Url Link $description = (string) $item->description; //Description $rss_split[] = '
  • '.$title.'
  • '; } return $rss_split; } function display($numrows,$head) { $rss_split = $this->parse(); $i = 0; $rss_data = '
      '; while ( $i < $numrows ) { $rss_data .= $rss_split[$i]; $i++; } $trim = str_replace('', '',$this->feed); $user = str_replace('&lang=en-us&format=rss_200','',$trim); $rss_data.='
    '; return $rss_data; } } $feedlist = new rss(''.$base_url.'blog/dental-care/feed/'); $feedlist2 = new rss(''.$base_url.'blog/oral-health/feed/'); $feedlist3 = new rss(''.$base_url.'blog/dental-procedures/feed/'); $feedlist4 = new rss(''.$base_url.'blog/patient-information/feed/'); $feedlist5 = new rss(''.$base_url.'blog/dental-problems/feed/'); $feedlist6 = new rss(''.$base_url.'blog/pediatric-dental-care/feed/'); echo "
    "; echo "

    Dental Care

    "; echo $feedlist ->display(10,"Read More Articles"); echo ""; echo "
    "; echo "
    "; echo "

    Oral Health

    "; echo $feedlist2 ->display(10,"Read More Articles"); echo ""; echo "
    "; echo "
    "; echo "

    Dental Procedures

    "; echo $feedlist3 ->display(10,"Read More Articles"); echo ""; echo "
    "; echo "
    "; echo "

    Patient Information

    "; echo $feedlist4 ->display(10,"Read More Articles"); echo ""; echo "
    "; echo "
    "; echo "

    Dental Problems

    "; echo $feedlist5 ->display(10,"Read More Articles"); echo ""; echo "
    "; echo "
    "; echo "

    Pediatric Dental Care

    "; echo $feedlist6 ->display(10,"Read More Articles"); echo ""; echo "
    "; ?>