"9") { $news = "9"; } } // inclue 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.jpg"; $create_date = gmdate('D, d M Y H:i:s') . ' GMT'; $language = "en-us"; echo " ".PROJECT." ".URL_BASE." ".$description." ".COPYRIGHT_HOLDER." ".$create_date." ".$language." ".$channel_image." ".PROJECT." ".URL_BASE." "; // - Create news items // $news = min( count($project_news), $news); for( $item=0; $item < $news; $item++ ) { if( count($project_news[$item]) == 2) { echo " Project News ".strip_tags($project_news[$item][0])." ".URL_BASE." ".strip_tags($project_news[$item][1])." "; } } // Close XML content // echo " "; ?>