我有一个包含三列的数据库:idKernfragen; Kernfrage;格比特
我想设置一个下拉列表,其中包含来自" Gebiet"的选项。 - 这很好用。我还设法从数据库中选择所有信息。但是,我想将Dropdown中的选定选项用作变量并添加" WHERE"我的SQL-Query只显示' Gebiet' = Dropdown-Selection。
这是我的代码:
<?php
require_once ('config.php');
$db = mysqli_connect (
MYSQL_HOST,
MYSQL_BENUTZER,
MYSQL_KENNWORT,
MYSQL_DATENBANK
);
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<div id="select">
<select name="gebiet1" onchange="this.form.submit();">
<?php
$gebietausgabe = mysqli_query($db, "SELECT DISTINCT Gebiet FROM kernfragen");
while ($row = $gebietausgabe->fetch_assoc())
{
echo "<option value=\"gebiet1\">" . $row['Gebiet'] . "</option>";
}
?>
</select>
</div>
</form>
<br>
<br>
<?php
$ergebnis = mysqli_query($db, "SELECT idKernfragen, Kernfrage FROM kernfragen");
while($row = mysqli_fetch_object($ergebnis))
{
echo $row->idKernfragen;
echo '.) ';
echo $row->Kernfrage;
print "<br>";
}
?>
非常感谢提前!
答案 0 :(得分:1)
试试这个:
<?php
if(isset($_POST['gebiet1'])){
$selected_val = $_POST['gebiet1']; // Storing Selected Value In Variable
echo "You have selected :" .$selected_val; // Displaying Selected Value
}
?>
<?php
require_once ('config.php');
$db = mysqli_connect (
MYSQL_HOST,
MYSQL_BENUTZER,
MYSQL_KENNWORT,
MYSQL_DATENBANK
);
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<div id="select">
<select name="gebiet1" onchange="this.form.submit();">
<?php
$gebietausgabe = mysqli_query($db, "SELECT DISTINCT Gebiet FROM kernfragen");
while ($row = $gebietausgabe->fetch_assoc())
{
echo '<option value="' . $row['Gebiet'] . '">' . $row['Gebiet'] . '</option>';
}
?>
</select>
</div>
</form>
<br>
<br>
<?php
$ergebnis = mysqli_query($db, "SELECT idKernfragen, Kernfrage FROM kernfragen where Gebiet='".$selected_val."'");
while($row = mysqli_fetch_object($ergebnis))
{
echo $row->idKernfragen;
echo '.) ';
echo $row->Kernfrage;
print "<br>";
}
?>