64ed8519d95bbf138a50e2cdb81bf77971f7360d
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step5.php    1) <?php
step5.php    2) session_start();
step5.php    3) if(!isset($_SESSION['phone'])) {
step5.php    4)     header('Location: index.php?error');
step5.php    5)     die();
step5.php    6) }
step5.php    7) 
step5.php    8) if (! $_SESSION['lname']) {
Bernd Wurst Dateinamen geändert

Bernd Wurst authored 6 years ago

auftrag.php  9)     header('Location: address.php?error');
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step5.php   10)     die();
step5.php   11) }
step5.php   12) 
step5.php   13) if (!isset($_SESSION['lieferart'])) {
Bernd Wurst Dateinamen geändert

Bernd Wurst authored 6 years ago

auftrag.php 14)     header('Location: gitterbox.php?error');
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step5.php   15)     die();
step5.php   16) }
step5.php   17) 
step5.php   18) if (!isset($_SESSION['kartons'])) {
Bernd Wurst Dateinamen geändert

Bernd Wurst authored 6 years ago

auftrag.php 19)     header('Location: gebrauchte.php?error');
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step5.php   20)     die();
step5.php   21) }
step5.php   22) 
step5.php   23) 
step5.php   24) 
step5.php   25) $headline = 'Ihr Auftrag';
step5.php   26) $content = '';
step5.php   27) if (isset($_REQUEST['error'])) {
step5.php   28)     $content .= '<div class="panel panel-danger">
step5.php   29)     <div class="panel-heading">Fehler</div>
step5.php   30)     <div class="panel-body">Bitte wählen Sie, in welche Gebinde wir abfüllen sollen.</div>
step5.php   31)     </div>';
step5.php   32) }
step5.php   33) 
step5.php   34) $gebrauchte = '';
step5.php   35) if ($_SESSION['kartons']) {
step5.php   36)     $gebrauchte = 'Zuerst meine gebrauchten Kartons und falls diese nicht reichen, dann ';
step5.php   37) }
step5.php   38) 
step5.php   39) $content .= '
step5.php   40)     <form class="form" action="save.php" method="post">
Bernd Wurst Spätere Anlieferung eingebaut

Bernd Wurst authored 6 years ago

auftrag.php 41)     <input type="hidden" name="form" value="auftrag">