git.schokokeks.org
Repositories
Help
Report an Issue
bibweb.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
0e2e84e
Branches
Tags
master
bibweb.git
obstart.php
quite gar nicht über dieses Interface ermöglichen
Bernd Wurst
commited
0e2e84e
at 2024-07-02 14:20:24
obstart.php
Blame
History
Raw
<?php session_start(); // Obstart immer von uns setzen // Quitte ist erst ab 10.10. erlaubt if (true || date('m-d') < '10-10') { $_SESSION['obstart'] = 'Apfel'; header("Location: gebrauchte.php"); die(); } require_once('lib/api.php'); $ret = api_call('GET', 'fruitTypes'); print_r($ret); $headline = 'Obstart'; $content = ''; $content .= ' <form class="form" action="save.php" method="post"> <input type="hidden" name="form" value="obstart"> <p>Um welche Fruchtart handelt es sich bei Ihrem Obst (überwiegend)?</p>'; foreach ($ret as $fruit) { $content .= ' <div class="form-group form-group-lg"> <input type="submit" class="btn btn-block btn-lg btn-primary" id="btn-ja" name="obstart" value="'.$fruit['label'].'"> </div> '; } $content .= ' </form> '; include("template.php");