This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

31 lines
757 B
PHP

<?php
function dynAuswahl (string $id, string $name, array $options, bool $multiple) {
if ($multiple == 1) {
$multiple ="multiple";
}
switch($id){
case "dynamisch1":
echo"<select id='$id' name='$name' $multiple><br>";
foreach($options as $wert){
echo "\n\t\t\t\t\t<option value='$wert'>$wert</option><br>";
}
echo "\n\t\t\t\t</select>";
break;
case "dynamisch2":
echo"<select id='$id' name='$name' $multiple><br>";
foreach($options as $wert){
echo "\n\t\t\t\t\t<option value='$wert'>$wert</option><br>";
}
echo "\n\t\t\t\t</select>";
break;
}
}
?>