我正在尝试从选择框中获取选项值,但不起作用:
HTML:
<form action="" method="post" name="module_gen">
<select id="module_gen_select_ver" name="module_gen_select_ver">
<option value="joomla15">Joomla 1.5</option>
<option value="joomla25_30">Joomla 2.5/3.0</option>
</select>
</form>
PHP:
if(isset($_POST['module_gen_select_ver'] ) == 'joomla15') {
$xmldata = '</install>';
}
elseif(isset($_POST['module_gen_select_ver'] ) == 'joomla25_30') {
$xmldata = '</extension>';
}
当我单击提交按钮时,它似乎没有考虑选项的值。
谁能告诉我我哪里出错了?