move template files in own folder

This commit is contained in:
Schrolli 2015-04-10 07:43:00 +02:00
parent 49fa43bd54
commit 0bb92fafac
6 changed files with 117 additions and 6 deletions

View file

@ -25,18 +25,18 @@ $db = new Database($dbhost, $dbuser, $dbpassword, $database, 1); //Show Error =
if(isset($_GET['overview']))
{
include("content.overview.php");
include("template.overview.php");
include("tpl/content.overview.php");
include("tpl/template.overview.php");
}
elseif(isset($_GET['parser']))
{
include("content.parser.php");
include("template.parser.php");
include("tpl/content.parser.php");
include("tpl/template.parser.php");
}
else
{
include("content.overview.php");
include("template.overview.php");
include("tpl/content.overview.php");
include("tpl/template.overview.php");
}
?>