Ersetzen der FPDF-Library durch TCPDF und Code-Formatierung
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user