我有一个性别下拉列表。我从我的表“候选人”中获取值,在这个表中我有一个字段,它实际上是另一个表的外键。
字段为gender_code_cde,表名为gender_code。现在,gender_code 包含 2 行。和 id 和描述。它的结构是这样的:
1->男 2->女
它显示在下拉列表中。但是如果选择了男性,我想获得 id 1,如果选择了女性,我想获得 id 2。我的代码如下:
<p>
<label for ="gender">Gender:</label>
<?php
$query = mysql_query("select * from gender_code"); // Run your query
echo '<select name="GENDER">'; // Open your drop down box
//Loop through the query results, outputing the options one by one
while ($row = mysql_fetch_array($query))
{
echo '<option value="'.$row['gender_cde'].'">'.$row['gender_dsc'].'</option>';
}
echo '</select>';
?>
</p>
我在 codeIgniter 工作。