编辑php中来自数据库的选项值

时间:2017-04-08 07:22:25

标签: php mysql

如何在编辑案例中获取选项的值我的代码如下:代码我在这里用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选择选项值不在编辑模式中所以请帮助我关联这个。没有获得选择值编辑框。

2 个答案:

答案 0 :(得分:1)

有人会说"要求提供细节不应该像拔牙一样#34; 由于@ Gaurav-Pandey不再参与,这是我的最后一次贡献:)

<?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:&nbsp; <input type="text" name="lname"   value="<?php echo $row[0]['lname'];?>">   </td> </tr> <tr> <td>
    Age:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<select name="age" >
    <option >Select Age</option> <?php echo $row[0]['age']</option> <?php } ?> </select> </td> </tr> <tr> <td>College:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="collg" value="<?php echo $row[0]['collgname'];?>"> </td> </tr> <tr> <td>City:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <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>