This commit is contained in:
csimonis 2024-10-12 13:45:04 +02:00
commit 9ffda1656d
4 changed files with 69 additions and 0 deletions

12
demo/oop/index.php Normal file
View file

@ -0,0 +1,12 @@
<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">
</>