我一直在使用以下内容在我的网页上的下拉列表中获取所选项目的值。
$field = $_POST['dropdownlistname'];
然而,当我通过回显创建下拉列表时,这不起作用。以下是我的表格。
<form name="searchForm" action="newCustomerSearchform.php" method="post">
<label><span></span> <input type="text" name="searchDB" /></label>
<button type="submit" name="btnSearch" value="Search" id="btnSearch" onclick="this.form.action">Search</button></label>
<?php
echo '<select name="customers">';
foreach ($_SESSION['names'] as $option => $value) {
echo '<option value='.$value['ID'].'>'.$value['First_Name'].' '.$value['Surname'].'</option>';
}
echo '</select>';
$test = $_POST['customers'];
echo $test;
</form>
提交表单后,将在newCustomerSearch.php上运行以下查询
<?php
include 'newCustomer.php';
connect('final');
$searchtext = $_POST['searchDB'];
$searchtext = htmlspecialchars($searchtext); // stop HTML charkacters
$searchtext = mysql_real_escape_string($searchtext); //stop SQL injection
$query = "SELECT * FROM customer WHERE First_Name LIKE '%$searchtext%'";
$data = mysql_query($query) or die(mysql_error());
$Customers = array();
$colNames = array();
while($row = mysql_fetch_assoc($data)){// puts data from database into array, loops until no more
$Customers[] = $row;
}
$anymatches = mysql_num_rows($data); //checks if the querys returned any results
if ($anymatches != 0) {
$_SESSION['names']=$Customers;
$colNames = array_keys(reset($Customers));
}
if ($anymatches == 0)
{
echo "Sorry, but we can not find an entry to match your query<br><br>";
}
header("location: newCustomer.php");
?>
然后,newCustomer页面将使用呈现的下拉列表重新加载,该列表包含查询返回的所有行。
然后我想在下拉列表中获取项目的值。没有重新提交表格。
答案 0 :(得分:2)
您将无法获得选择框中的值,直到后续请求将其发回给您。
您需要条件逻辑
$_POST
答案 1 :(得分:2)
无论您如何生成下拉列表,在创建整个页面,将其发送给用户,然后在不同的版本中接收用户的响应之前,它都没有值你的脚本。
因此,您需要使用代码来创建页面,并使用代码来阅读读者的响应。你在做两件事吗?