如何在编辑案例中获取选项的值我的代码如下:代码我在这里用PHP。
d1 = df.set_index(['year', 'week', 'day'])
s1 = d1.unstack(['year', 'day']).shift(-1).stack(['year', 'day']).swaplevel(0, 1)
d1.mask(d1==9999).fillna(s1).reset_index()
year week day v1 v2
0 2001 1 1 46.0 73.0
1 2001 1 2 60.0 9335.0
2 2001 1 3 79.0 9318.0
3 2001 1 4 47.0 361.0
4 2001 1 5 57.0 9373.0
5 2001 1 6 77.0 9384.0
6 2001 1 7 72.0 9444.0
7 2001 2 1 75.0 73.0
8 2001 2 2 74.0 63.0
9 2001 2 3 79.0 377.0
10 2001 2 4 70.0 361.0
11 2001 2 5 75.0 73.0
12 2001 2 6 77.0 64.0
13 2001 2 7 76.0 57.0
我希望这个年龄= 11当我要编辑数据..在选择框上目前m在编辑模式中获取所有值bt选择选项值不在编辑模式中所以请帮助我关联这个。没有获得选择值编辑框。
答案 0 :(得分:1)
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$my_age = "11"; /* set it up from wherever it comes from as you need it */
function agedropdown(){
$range=range(1,25);
foreach ($range as $value) {
}
return $range;
}
echo"<select name=\"age\">";
echo"<option>Select Age</option>";
$getoptions = agedropdown();
foreach ($getoptions as $key => $value) {
if($value == $my_age) { $selected = 'selected="selected"'; } else { $selected = ""; }
echo"<option value=\"$value\" $selected>$value</option>";
}
echo"</select>";
?>
答案 1 :(得分:0)
我拥有与您相同的数据库并且正在工作。在你的情况下尝试这个..
$result=mysql_query($query);
$total=count($result);
for($i=0;$i<$total;$i++);
?>
<form action="" method="post" enctype="multipart/form-data"> <table> <tr> <td>
First Name:<input type="text" name="fname" value="<?php echo $row[0]['name'];?>"> </td> </tr> <tr> <td>
Last Name: <input type="text" name="lname" value="<?php echo $row[0]['lname'];?>"> </td> </tr> <tr> <td>
Age: <select name="age" >
<option >Select Age</option> <?php echo $row[0]['age']</option> <?php } ?> </select> </td> </tr> <tr> <td>College: <input type="text" name="collg" value="<?php echo $row[0]['collgname'];?>"> </td> </tr> <tr> <td>City:
<input type="text" name="city" value="<?php echo $row[0]['city'];?>"> </td> </tr> <tr> <td> <input type="submit" name="sub"> </td> </tr> </table> </form> </body> </html>