PHP,从表单获取值(包含来自数据库的数据,在循环中)

时间:2016-11-19 06:54:16

标签: php html mysql

我正在尝试获取表单元素的值,该表单元素作为名称值作为数据库中的ID, 代码是

while ($row = $result->fetch_assoc()) {

                           unset($id, $name);
                           $id = $row['D_ID'];
                           $name = $row['d_name']; 
                           echo '<option name="'.$id.'">'.$name.'</option>';

                       }

                       echo "</select>";

检索名称值的其他代码如下

$degree = $_POST['degree'];
$tavail = $_POST['tavail'];
$appoint = $_POST['choice'];
$logg = $_POST['.$id.']; 
echo $logg;  // The id value from the option name 

但该行未定义索引存在错误 我想知道如果名称是变量本身,我如何从该选项标签中获取值

0 个答案:

没有答案