#!/usr/local/bin/php publish date. i.e., when last update was published. // $cdata[1] => last build date. i.e., when item(s) was/were last updated. // dates in format Sat, 13 Dec 2003 18:30:02 GMT $cdata = explode('|',$data[0]); // headers $rss = ' CCIES at The Kinsey Institute - News News and updates about Francoeur and Noonan\'s (2004) online version of the award-winning Continuum Complete International Encyclopedia of Sexuality (CCIES), hosted at The Kinsey Institute website. http://www.kinseyinstitute.org/ccies/ ' . $cdata[0] . ' ' . $cdata[1] . ' rjnoonan@SexQuest.com?Subject=CCIES updates RSS (Raymond J. Noonan, Ph.D.) kinsey@indiana.edu (Kinsey Information Services) '; // items $max = sizeof($data); // loop through data items // $idata array: // 0 - unique id; 1 - title; 2 - date; 3 - category; 4 - content; 5 - link for($x = 1; $x < $max; $x++) { $idata = explode('|',$data[$x]); $rss .= ' ' . $idata[1] . ' http://www.kinseyinstitute.org/ccies/' . $idata[5] . ' ' . md5($idata[1] . $idata[0]) . ' ' . $idata[2] . ' ' . htmlspecialchars($idata[4], ENT_QUOTES) . ' ' . $idata[3] . ' '; } // close $rss .= ' '; header('Content-type: application/rss+xml'); echo $rss; ?>