我想知道是否有人可以帮助我。
首先很抱歉,因为我是新手,所以对某些人来说,这似乎是一个非常基本的错误。
我正在使用下面的表单来允许用户在所有基于“位置”记录的不同页面之间导航。
<form name="locations" id="locations" method="post" action="locationsaction.php">
<?php
<table width="538" border="0">
<tr>
<th width="119"><div align="left">Location Name</div></th>
<th width="159"><div align="left">Address</div></th>
<th width="94"><div align="center">No. Of Finds</div></th>
<th width="69"></th>
<th width="66"></th>
<th width="5"></th>
</tr>
<tr>
<td><div align="left"><?php echo $lid;?></div></td>
<td><div align="left"><?php echo $lname;?></div></td>
<td><div align="left"><?php echo $laddress;?></div></td>
<td><div align="center"><?php echo $findscount?></div></td>
<td><div align="center"><input name="type" type="submit" value="View Details"/></div></td>
<td><div align="center"><input name="type" type="submit" value="Add Finds"/></div></td>
<td><div align="center"><input name="type" type="submit" value=" Add Images"/></div></td>
</tr>
<tr><th colspan="8"><br/><hr width="100%"></th></tr>
</table>
<?php
</form>
在表格的最后,您会注意到有三个“提交”按钮将用户带到不同的页面。以下 PHP 脚本用于确定选择了哪个按钮,并在上述Form POST
操作中显示为locationsaction.php
<?php
if (isset($_POST['type'])) {
$urls = array(
'View Details' => 'updatelocation.php',
'Add Finds' => 'addfinds.php',
'Add Images' => 'image.php'
);
$url = $urls[$_POST['type']];
header("Location: " . $url);
}
?>
尽管按钮工作正常,因为它们将用户带到正确的页面,但我无法将$lid
变量传递给三个接收页面中的任何一个,并且收到以下错误:
Notice: Undefined index: lid in /homepages/2/d333603417/htdocs/updatelocation.php
这就是我试图$lid
在所有接收页面中获取变量的方式:
$lid = $_POST['lid'];
我浏览了这个网站上的几个教程和帖子,但我找不到我哪里出错了。
我只是想知道是否有人可以看看这个并让我知道我哪里出错了?
非常感谢和亲切的问候