我正在尝试使用 PHP 动态构建一个下拉菜单。这个想法是:元素是由一个调用和数组的循环形成的。如果数组元素与会话中保存的数据匹配,则它将“选定”属性添加到标记,这意味着页面显示先前选择的选项。
我试图在这里包含一套完整的代码,从定义会话数据中的变量到回显表单元素的 HTML。
它目前不起作用 - 下拉菜单出现,但为空白,并且没有选项。我用 ideone 调试过它,它似乎运行成功,我看不出哪里出错了,但是这是我的第一个 PHP 函数!所以我确定我以某种方式搞砸了:)
非常感谢任何帮助。
<?php
session_start();
//if the session data has been set, then the variable $sv_02 is defined
//as the data held in the session under that name, otherwise it is blank
if (isset($_SESSION['sv_02'])) {$sv_02=$_SESSION['sv_02'];} else {$sv_02="";}
//define the array
$dm_sv_02 = array('-Year','-2012','-2011','-2010','-2009');
//create the function
function dropdown($dropdownoptions, $session_data)
{
foreach($dropdownoptions as $dropdownoption){
if($session_data == $dropdownoption){
echo '<option value="' . $dropdownoption . '" selected>' . $dropdownoption . '</option>';
} else {
echo '<option value="' . $dropdownoption . '">' . $dropdownoption . '</option>';
}
}
}
//echo the HTML needed to create a drop down, and populate it with
//the function which should create the <option> elements
echo '<select name="sv_02">';
dropdown($dm_sv_02, $sv_02);
echo '</select>';
?>