<?
 
 
#######################=-##=-=##
 
#                              #
 
#  RSS parse engine v 1.0      #
 
#                              #
 
#  author: [email protected]  #
 
#                              #
 
##=-##=-=#######################
 
 
 
//================ Configuration ========================================//
 
 
 
// Outer HTML Template
 
 
define(RSS_TEMPLATE,"<p><b>%title%</b><br><a href='%link%'>%description%</a></p>"); 
 
 
 
 
 
// Items per Page
 
 
define(PER_PAGE,5);
 
 
 
 
// If you want display only One page of Items 
 
// And wantn't display pages splitting in the footer 
 
 
define(PAGES,1);
 
 
 
 
 
 
//RSS resource cashing timeout (seconds)
 
 
define(CASHE_TIMEOUT,3600);
 
 
 
//=======================================================================//
 
 
 
 
?>
 
 |