15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
if (!isset($_POST['prod'])) {
|
|
die("<h1>Sie dürfen diese Seite nicht so aufrufen!</h1>");
|
|
}
|
|
|
|
if (!isset($_POST['step'])) {
|
|
include "inhalte/neue_firma_step1.php";
|
|
} else {
|
|
if ($ok) {
|
|
include "inhalte/neue_firma_step".$_POST['step'].".php";
|
|
} else {
|
|
include "inhalte/neue_firma_step".$_POST['aktstep'].".php";
|
|
}
|
|
}
|
|
?>
|