Hallo ,
ich lege eine Projektverwaltung an .. und lese aus einer Mysql Tabelle
die Spalten Projekt, Standort aus .
Das Projekt wird über ein Dropdown ausgewählt..
soweit so gut .. allerdings habe ich keineAhnung wie ich es anstellen muss
damit mir , in einem zweiten Feld ,der korrekte Standort angezeigt wird.
Hab das eher schlecht über ein weiteres Dropdown gelöst .. ist aber unpraktisch und auch zu fehleranfällig
Hier das was ich bisher habe , hoffe ihr könnt mir helfen!!
<?php
require 'connecta.php';
$select1 = $db->query("SELECT `projekt`, `standort`
FROM `test`
where projekt not in (select projekt from ausgabe )
and projekt is not null
group by 1,2");
$nachrichten1 = $select1->fetchAll();
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta content="text/html; charset=utf-8"/>
<title>Projektübersicht</title>
</head>
<body>
<form action="" method="post">
<h1></h1>
<td>
<h3 style="display: inline;">Projekt: </h3>
<select name="projekt" >
<option value="">Bitte auswählen</option>
<?php
foreach ($nachrichten1 as $nachricht) {
echo '<option>' . $nachricht["projekt"] . '</option>';
}
?>
</select>
</td>
<h1></h1>
<td>
<h3 style="display: inline;">Standort: </h3>
<select name="standort">
<option value="">Bitte auswählen</option>
<?php
foreach ($nachrichten1 as $nachricht) {
echo '<option>' . $nachricht["standort"] . '</option>';
}
?>
</select>
</td>
?>
</body>
</html>
ich lege eine Projektverwaltung an .. und lese aus einer Mysql Tabelle
die Spalten Projekt, Standort aus .
Das Projekt wird über ein Dropdown ausgewählt..
soweit so gut .. allerdings habe ich keineAhnung wie ich es anstellen muss
damit mir , in einem zweiten Feld ,der korrekte Standort angezeigt wird.
Hab das eher schlecht über ein weiteres Dropdown gelöst .. ist aber unpraktisch und auch zu fehleranfällig
Hier das was ich bisher habe , hoffe ihr könnt mir helfen!!
<?php
require 'connecta.php';
$select1 = $db->query("SELECT `projekt`, `standort`
FROM `test`
where projekt not in (select projekt from ausgabe )
and projekt is not null
group by 1,2");
$nachrichten1 = $select1->fetchAll();
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta content="text/html; charset=utf-8"/>
<title>Projektübersicht</title>
</head>
<body>
<form action="" method="post">
<h1></h1>
<td>
<h3 style="display: inline;">Projekt: </h3>
<select name="projekt" >
<option value="">Bitte auswählen</option>
<?php
foreach ($nachrichten1 as $nachricht) {
echo '<option>' . $nachricht["projekt"] . '</option>';
}
?>
</select>
</td>
<h1></h1>
<td>
<h3 style="display: inline;">Standort: </h3>
<select name="standort">
<option value="">Bitte auswählen</option>
<?php
foreach ($nachrichten1 as $nachricht) {
echo '<option>' . $nachricht["standort"] . '</option>';
}
?>
</select>
</td>
?>
</body>
</html>
Kommentar