这是我的选择标签,但在网格中编辑和添加时我无法检索国家值,只有代码值出现我该怎么办?
<select name="country" id="country" >
<option value="" >select country</option>
<?php $select_query= mysql_query("Select * from country");
while($select_query_array = mysql_fetch_array($select_query))
{
?>
<option value="<?php echo $select_query_array['code'];?>" <?php if($_POST['country']==$select_query_array['code']) { ?> selected="selected" <?php } ?> > <?php echo $select_query_array['country']; ?> </option>
<?php } ?>
</select>