Hallo,
Ich würde gerne eine DropDown Box in PHP Programmieren.
Dies soll wie folgt aussehen, den folgende HTML Code kennt ihr ja alle.
Nun möchte ich aber den jeweiligen OPTIONEN in PHP verschiedene Update SQL Anfragen zu ordnen, wie könnte ich das in PHP Realisieren?
So in etwa:
usw. usw. nur das haut nicht hin.
Bitte um Hilfe
Gruß
Tim
Ich würde gerne eine DropDown Box in PHP Programmieren.
Dies soll wie folgt aussehen, den folgende HTML Code kennt ihr ja alle.
PHP-Code:
<select name="top5" size="3">
<option>Update 1</option>
<option>Update 2</option>
<option>Update 3</option>
</select>
Nun möchte ich aber den jeweiligen OPTIONEN in PHP verschiedene Update SQL Anfragen zu ordnen, wie könnte ich das in PHP Realisieren?
So in etwa:
PHP-Code:
if ($OPTION1) {
$result = "UPDATE TABELLENNAME SET SPALTE = 'OPTION1' WHERE ID = '$ID'";
$row = mysql_query($result);
}
else if ($OPTION2) {
$result = "UPDATE TABELLENNAME SET SPALTE = 'OPTION2' WHERE ID = '$ID'";
$row = mysql_query($result);
}
else if ($OPTION3) {
$result = "UPDATE TABELLENNAME SET SPALTE = 'OPTION3' WHERE ID = '$ID'";
$row = mysql_query($result);
}
Bitte um Hilfe
Gruß
Tim
Kommentar