无法从php中的html获取下拉列表值

时间:2015-01-04 10:41:54

标签: php html drop-down-menu

我的第一个PHP代码获取表格中的值" mytable"分别是1月,2月和3月。它运作良好,我可以在下拉列表中看到月,1月,2月和3月。我的问题是在第二个PHP代码内,当我点击搜索按钮时,没有任何反应。我期望它做的是从下拉列表中打印出值,但遗憾的是,我什么都没得到。

<select name="monthchoice">
<option value="">Month</option>; 

<?php   
$request="SELECT date FROM mytable WHERE username='qwe'";
$result=mysqli_query($con, $request);
while($fetch = mysqli_fetch_assoc($result))
{
echo '<option value="'.$fetch['date'].'">'.$fetch['date'].'</option>'; 
}
?>

</select>
<input type="submit" value="Search" name="submit"/>

<?php
if(isset($_POST["submit"]))
{
    if(!empty($_POST['monthchoice']))
        {
        $monthchoice1=$_POST['monthchoice'];
        echo "<br>";
        echo $monthchoice1;
        }
    else
        {
        echo "<br>";
        echo 'Please choose a month!';
        }
}
?>

2 个答案:

答案 0 :(得分:1)

我认为您不会使用标签表单。

答案 1 :(得分:1)

您是否已使用方法帖子将您的选择和输入包装在表单标记内?

<form action="" method="post">
<select name="monthchoice">
<option value="">Month</option>; 

<?php   
$request="SELECT date FROM mytable WHERE username='qwe'";
$result=mysqli_query($con, $request);
while($fetch = mysqli_fetch_assoc($result))
{
echo '<option value="'.$fetch['date'].'">'.$fetch['date'].'</option>'; 
}
?>

</select>
<input type="submit" value="Search" name="submit"/>

<?php
if(isset($_POST["submit"]))
{
    if(!empty($_POST['monthchoice']))
        {
        $monthchoice1=$_POST['monthchoice'];
        echo "<br>";
        echo $monthchoice1;
        }
    else
        {
        echo "<br>";
        echo 'Please choose a month!';
        }
}
?>

</form>