diff --git a/www/content.parser.php b/www/content.parser.php new file mode 100644 index 0000000..15c5adc --- /dev/null +++ b/www/content.parser.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/www/index.php b/www/index.php index a817e2b..d80247c 100644 --- a/www/index.php +++ b/www/index.php @@ -28,6 +28,11 @@ $db = new Database($dbhost, $dbuser, $dbpassword, $database, 1); //Show Error = include("content.overview.php"); include("template.overview.php"); } + elseif(isset($_GET['parser'])) + { + include("content.parser.php"); + include("template.parser.php"); + } else { include("content.overview.php"); diff --git a/www/template.parser.php b/www/template.parser.php new file mode 100644 index 0000000..e69de29