Code:
$page_title=$page;
ucwords($page_title);
str_replace("_", " ", $page_title);
$title=$page_title." | ".$site_name;
Why the ... doesn't this work?
Here's the main file, you may request any other code if you want it:
Code:
/* Load Configs */
require_once("./admin/settings/site.php");
require_once("./admin/settings/file.php");
require_once("./admin/settings/style.php");
/* Load Core */
require_once("./core/getpage.php"); // Runs the GET functions
require_once("./core/posttitle.php"); // Sets the titles < this is the one above
/* Load headers */
require_once("./template/common/header.php");
require_once("./template/".$style_loc."/top.php");
include("./pages/".$page.".".$ext);