get news post $post_id=intval($_GET['post_id']); if($post_id) { //--> set seo title $a1=get_news_post($post_id,1); // return assoc array of all fields for this post $seo_page_title=seo_format_title($a1); //--> set seo meta $seo_meta_kw=seo_format_meta_kw($a1); $seo_meta_desc=seo_format_meta_desc($a1); //--> count news post views (excluding admin) count_news_views($post_id); //--> call news post function $news_post=get_news_post($post_id); } // end if, any post_id include_once("templates/HeaderTemplate.php"); include_once("templates/NewsTemplate.php"); include_once("templates/FooterTemplate.php"); ?>