如何使用PHP验证下拉列表

时间:2012-04-23 08:13:29

标签: php

我想使用PHP验证表单。以下是我的表格样本:

<form>
    <select name="select_box">
        <option value="0">Please Select</option>
        <option value="1">OPT 1</option>
        <option value="2">OPT 2</option>
    </select>
    <input type="submit" value="Go!" />
</form>

3 个答案:

答案 0 :(得分:1)

在你的php脚本中你在哪里提交你的表单(在这种情况下,它是回显表单的相同脚本,因为你没有为你的{{actionmethod属性指定1}}),您可以通过<form>获取输入值,在您的情况下:

$_GET['name_of_input']

答案 1 :(得分:1)

<?php 
if(isset($_REQUEST['select_box']) && $_REQUEST['select_box'] == '0') { 
  echo 'Please select a country.'; 
} 
?>

答案 2 :(得分:0)

<?php
if ($_GET['select_box'] != '0') //form validation
{
 //your code here
}
?>