30 lines
802 B
PHP
30 lines
802 B
PHP
<?php
|
|
if (isset($_POST['ID'])) {
|
|
$test = explode("_", $_POST['ID']);
|
|
$ID = $test['1'];
|
|
$Jahr = $test['0'];
|
|
}
|
|
$legend = "Lieferscheine";
|
|
$t_pos = "liefer";
|
|
$Typ = "Lieferschein";
|
|
$type = "Lieferschein";
|
|
$Text = "Lieferschein vom:";
|
|
$table = PREFIX."_liefer";
|
|
|
|
if (isset($_GET['pdf'])) {
|
|
include "inhalte/pdf_show.php";
|
|
} elseif (isset($_GET['mail'])) {
|
|
include "inhalte/mail.php";
|
|
} else {
|
|
if ((!isset($_POST['formaction'])) OR ("stop" == $_POST['formaction'])) {
|
|
include "inhalte/search.php";
|
|
include "inhalte/".$_GET['section']."_over.php";
|
|
} elseif ("mail" == $_POST['formaction']) {
|
|
} elseif ("email" == $_POST['formaction']) {
|
|
include "inhalte/email.php";
|
|
} else {
|
|
include "inhalte/".$_GET['section']."_".$_POST['formaction'].".php";
|
|
}
|
|
}
|
|
|
|
?>
|