13 lines
225 B
PHP
13 lines
225 B
PHP
|
<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">
|
||
|
</>
|
||
|
|