20 lines
352 B
PHP
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;
|
|
}
|
|
|
|
?>
|