'Top Rated Ads', 'new' => 'New Ads', 'featured' => 'Featured Ads', ); if(!$pg) $pg='0'; if($A_EXTRA[$pg]){ $title = $A_EXTRA[$pg]; $tpl_dir = INC_PATH; $pg.='.htm'; } else{ $tpl_dir = TPL_C_PATH; $title = GetPgArr($pg); } ShowHeader(); include($tpl_dir.$pg); ShowFooter(); function GetPgArr($pg=''){ global $tpl_dir; $a_lines = file($tpl_dir.'data.dat'); $a_pg = array(); if($a_lines) foreach($a_lines as $v){ list($fname,$ftitle)=explode("\t",trim($v)); $a_pg[$fname]=$ftitle; } if($pg!=''){ if($a_pg[$pg]) return $a_pg[$pg]; else{ list($pg)=each($a_pg); $GLOBALS['pg']=$pg; return $a_pg[$pg]; } } return $a_pg; } ?>