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
sgd/ysqld/ysql04d/einsende/setopt.php
T

20 lines
352 B
PHP

<?php
function setOption ($wert, $text){
$ausgabe = "<option value='{$wert}'";
if (isset($_POST["breite"])) {
if ($_POST["provision"] == $wert) {
$ausgabe .= " selected";
}
}
if(empty($text)) {
$text = $wert;
}
$ausgabe .= ">$text</option>\n";
echo $ausgabe;
}
?>