繁体   English   中英

如何使用PHP在首页加载下拉列表中设置默认选项?

[英]How to set default choice in drop down list on first page load using PHP?

我使用以下代码创建了一个下拉列表,但我想在页面的第一次加载时设置默认选项(即,显示最新日期,而不是第一组选项)。 我怎样才能做到这一点?

<?php
$startyear = ""; 
$startmonth = "";
$startday = "";
$endyear = "";
$endmonth = "";
$endday = "";

$year  = range(1998,2012);
$month = range(01,12);
$day   = range(01,31);

if($_SERVER['REQUEST_METHOD']=='POST')
{
    foreach($_POST as $key=>$value)
    {
        if(is_numeric($value))
        {
            $$key = $value;
        }
    }
}

?>

在这里填写资料

<form name='update' action='' method='POST'>
Start: <select name='startyear'>
    <?php foreach(array_reverse($year) as $y):?>
    <option value="<?php echo $y?>"<?php echo((isset($startyear) && $startyear == $y)?' selected':null)?>><?php echo $y?></option>
    <?php endforeach;?>
</select>
<select name='startmonth'>
    <?php foreach($month as $m): $m = str_pad($m, 2, "0", STR_PAD_LEFT);?>
    <option value="<?php echo $m;?>"<?php echo ((isset($startmonth) && $startmonth == $m)?' selected':null)?>><?php echo $m;?></option>
    <?php endforeach;?>
</select>
    <select name='startday'>
    <?php foreach($day as $d): $d = str_pad($d, 2, "0", STR_PAD_LEFT);?>
    <option value="<?php echo $d;?>"<?php echo ((isset($startday) && $startday == $d)?' selected':null)?>><?php echo $d;?></option>
    <?php endforeach;?>
</select>
<input type='submit' value='View'/>
</form>
if($_SERVER['REQUEST_METHOD']=='POST')
{
    ...
} else {
    // Set your defaults here.
}

由于您被选中的检查是这样完成的:

<?php echo ((isset($startday) && $startday == $d)?' selected':null)?>

只需使用默认值定义变量,它们为空!

$startyear = ""; 
$startmonth = "";
$startday = "";
$endyear = "";
$endmonth = "";
$endday = "";

这是你想要的吗?

$cur_day  = date('j');
$cur_mon  = date('n');
$cur_year = date('Y');

然后在选项循环中像这样

if($y == $cur_year) echo 'selected';

那么默认情况下将选择当前年份,对月份和日期也是如此。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM