再会!
我想问当我编辑它时如何保留我的下拉框的值。
以我的形式
<tr>
<td><strong>*Die Type:</strong></td>
<td>
<?php
$query = "SELECT * FROM idie_type_tbl" ;
$result = mysql_query($query);
echo'<select name="die_type" class="textfield">';
while($row = mysql_fetch_assoc( $result )) {
echo '<option value="'.$row['die_type_id'].'">' . $row['die_type'] . '</option>';
}
echo '</select>';
?>
</td>
在我的 edit.php 脚本中也是如此。如何在edit.php中保留我的数据库驱动下拉框的值
谢谢..