2024-10-12 14:21:28 +02:00
|
|
|
<h1>Fragen</h1>
|
2024-10-12 13:45:04 +02:00
|
|
|
<form method="post" action="loesung.php">
|
|
|
|
<?php
|
|
|
|
$fragen = require 'holeFragen.php';
|
|
|
|
foreach ($fragen as $frage) {
|
|
|
|
echo $frage;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<input type="submit" value="Absenden">
|
2024-10-12 14:06:26 +02:00
|
|
|
</form>
|
2024-10-12 13:45:04 +02:00
|
|
|
|