1

我在项目中的最后一件小事上遇到了一些麻烦。

我可以在索引页面上使用表单修改记录,但是当我让更新按钮调用 modifyRecord 页面时,我无法弄清楚如何获取“reg”的变量(来自抽屉 2 的 reg ID)。我将它作为值(参见代码),但是当我尝试使用它或将其存储在变量中时,我得到一个未定义的索引错误。不知道我需要做什么??

FROM INDEX.PHP:(这发生在每个显示记录的循环中)

foreach($resultdet as $res2){
printf($format, $res2['Id'], $res2['Value1'], $res2['Value2'], $res2['reg']);

echo("<form method='Post' action='modifyRecord.php'><input type ='hidden' value =".$res2['Id'].
" name = 'Id'/><input type ='hidden' value =".$res2['reg'].
" name = 'reg'/><input type = 'submit' value = 'modify' name = 'mod'/>
</form>");
}

我正在尝试将值存储在变量中:(来自 modifyRecord.php)

if(isset($_POST['mod']))
{
echo 'POST Mod is set';
$regId = $_REQUEST['reg'];
}

但是回声永远不会显示...

不知道出了什么问题。谢谢你...

4

2 回答 2

3

您忘记了值上的撇号。

试试这个代码:

echo("<form method='Post' action='modifyRecord.php'><input type='hidden' value='" .
$res2['Id'] .
"' name='Id'/><input type ='hidden' value='".$res2['reg'].
"' name='reg'/><input type='submit' value='modify' name='mod'/>
</form>");
于 2012-10-18T19:06:55.753 回答
2

尝试这个:

foreach ($resultdet as $res2)
{
    printf($format, $res2['Id'], $res2['Value1'], $res2['Value2'], $res2['reg']);

    $data "
    <form method='Post' action='modifyRecord.php'>
    <input type='hidden' value=\"{$res2['Id']}\" name='Id' />
    <input type='hidden' value=\"{$res2['reg']}\" name='reg' />
    <input type='submit' value='modify' name='mod' />
    </form>";

    echo $data;
}

if (isset($_POST['mod']))
{
    echo 'POST Mod is set';
    $regId = $_REQUEST['reg'];
}
于 2012-10-18T19:09:58.087 回答