"9") { $news = "9"; } // include project constants and news file // require_once("../project/project.inc"); require_once("../project/project_news.inc"); // Create channel header and open XML content // $description = "BOINC project ".PROJECT.": Main page News"; $channel_image = URL_BASE . "rss_image.gif"; $language = "en-us"; echo " ".PROJECT." ".URL_BASE." ".$description." ".COPYRIGHT_HOLDER." ".$create_date." ".$language." ".$channel_image." ".PROJECT." ".URL_BASE." "; // write news items // $tot = count($project_news); $news = min( $tot, $news); for( $item=0; $item < $news; $item++ ) { $j = $tot - $item; if( count($project_news[$item]) == 2) { $d = strtotime($project_news[$item][0]); $news_date=gmdate('D, d M Y H:i:s',$d) . ' GMT'; $unique_url=URL_BASE."all_news.php#$j"; echo " Project News ".strip_tags($project_news[$item][0])." $unique_url $unique_url ".strip_tags($project_news[$item][1])." $news_date "; } } // Close XML content // echo " "; ?>