master
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php       1) <?php
step4.php       2) session_start();
step4.php       3) 
step4.php       4) 
step4.php       5) $headline = 'Gebrauchte Kartons';
step4.php       6) $content = '';
step4.php       7) if (isset($_REQUEST['error'])) {
Bernd Wurst Fehlermeldungen auf BS4 por...

Bernd Wurst authored 6 years ago

gebrauchte.php  8)     $content .= '<div class="card text-white bg-danger mb-3">
gebrauchte.php  9)     <div class="card-header">Fehler</div>
gebrauchte.php 10)     <div class="card-body">Bitte wählen Sie, ob Sie gebrauchte Bag-in-Box-Kartons abgestellt haben.</div>
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php      11)     </div>';
step4.php      12) }
step4.php      13) 
step4.php      14) 
step4.php      15) $content .= '
step4.php      16)     <form class="form" action="save.php" method="post">
Bernd Wurst Spätere Anlieferung eingebaut

Bernd Wurst authored 6 years ago

gebrauchte.php 17)     <input type="hidden" name="form" value="gebrauchte">
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

gebrauchte.php 18)     ';
Bernd Wurst Erste Version, die über die...

Bernd Wurst authored 3 years ago

gebrauchte.php 19)     if (isset($_SESSION['angeliefert']) && $_SESSION['angeliefert'] === false) {
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

gebrauchte.php 20)         $content .= '<p>Werden Sie gebrauchte Bag-in-Box-Kartons mitbringen?</p>';
Bernd Wurst Erste Version, die über die...

Bernd Wurst authored 3 years ago

gebrauchte.php 21)     } else {
Bernd Wurst Schrift größer, Buttons mit...

Bernd Wurst authored 5 months ago

gebrauchte.php 22)         $content .= '<p>Haben Sie <strong>gebrauchte Bag-in-Box-Kartons</strong> mitgebracht und bei uns unter Dach gestellt?</p>';
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

gebrauchte.php 23)     }
gebrauchte.php 24) $content .= '
Bernd Wurst Initial commit

Bernd Wurst authored 6 years ago

step4.php      25)        <div class="form-group form-group-lg row">
Bernd Wurst Migration to bootstrap-4.0.0

Bernd Wurst authored 6 years ago

gebrauchte.php 26)         <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsja" name="kartonsja" value="Ja"></div>
gebrauchte.php 27)         <div class="col-sm-6"><input type="submit" class="btn btn-block btn-lg btn-light" id="btn-kartonsnein" name="kartonsnein" value="Nein"></div>