This commit is contained in:
2019-07-04 13:13:09 +02:00
parent da2538178e
commit abc5b14577

View File

@@ -6,7 +6,6 @@ $id = $_GET['id'];
$db = new Database();
$question = $db->getQuestion($id);
var_dump($question);
$sol = $question['solution'];
@@ -16,7 +15,6 @@ echo <<<END
<label for="question">Frage:</label> <br>
<textarea name="question" id="question">$question['question']</textarea> <br><br>
<label for="answer0">Antwort 0:</label>
<div class="form-box">
END;