Ersetzen der FPDF-Library durch TCPDF und Code-Formatierung

This commit is contained in:
2016-07-06 22:04:12 +00:00
parent 5665bcbd3b
commit 715cb62aa9
515 changed files with 110799 additions and 24957 deletions

View File

@@ -1,15 +1,21 @@
<?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";
}
}
?>
<?php
if (!isset($_POST['prod']))
{
die("<h1>Sie dürfen diese Seite nicht so aufrufen!</h1>");
}
if (!isset($_POST['step']))
{
include __DIR__ . "/neue_firma_step1.php";
}
else
{
if ($ok)
{
include __DIR__ . "/neue_firma_step" . $_POST['step'] . ".php";
}
else
{
include __DIR__ . "/neue_firma_step" . $_POST['aktstep'] . ".php";
}
}