items, 0, $num_items); // uncomment next line to see the raw feed parsed by php 'var_dump' builtin // var_dump($rss); exit; foreach ($items as $it) { // format Unix date from RSS ('date_timestamp') using php 'date' builtin $date = date('F j, Y', $it['date_timestamp']); // add formatted data to a string for later printing; CSS classes are specific to Compositionforum.com // note creator is in nested array $html .= sprintf('
  • %s: %s

    Posted by %s
    %s

  • ', $date, $it['link'], $it['title'], $it['dc']['creator'], $it['summary']); } // print the collected HTML echo $html; ?>