wahlhelfer/setup/index.php
Klaus-Uwe Mitterer b384099d9b Restructuring a few things
Finally adding the setup files ._.
2016-02-07 23:16:32 +01:00

17 lines
343 B
PHP
Executable file

<?php
session_start();
require("config/config.php");
$nextStep = "introduction";
if (isset($_POST['nextStep']))
$nextStep = $_POST['nextStep'];
$step = $nextStep;
$header = $config['header'];
$product = $introduction["product"];
include("templates/header.php");
include($nextStep.".php");
include("templates/footer.php");