wahlhelfer/setup/index.php

17 lines
343 B
PHP
Raw Normal View History

<?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");