2024-10-12 11:45:04 +00:00
|
|
|
<h1>fragen</h1>
|
|
|
|
<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 12:06:26 +00:00
|
|
|
</form>
|
2024-10-12 11:45:04 +00:00
|
|
|
|