我在php中有收音机,它包含在具有post
方法的表单标签中。我在不同的div
和不同的form
所以我有这个
<td style="text-align: center;">
<input type="radio" name="equipment" value="1" >
</td>
然后在另一个div和形式中我有这个:
<div class="col-lg-1">
<form method="POST">
<button type="submit" class="btn btn-danger" name="delete">Delete</button>
</form>
</div>
然后在我的php文件的顶部我有这个:
if(isset($_POST['delete']))
{
$equipment = $_POST['equipment']; //as you notice this equipment comes from my radio input from the first example above. And the error is here.
echo "<script>";
echo "alert('".$equipment;
echo "'); </script>";
}
所以我从昨天起就有这个问题好几个小时了。当我点击删除按钮时,它会显示警告框,但在我关闭它之后,我会收到通知:未定义的索引:../etc/phpfile:lineNumber中的设备。基本上,错误将我链接到此代码$equipment = $_POST['equipment'];
我如何解决这个问题,因为我想在以后使用php来获取无线电值来操纵mysql。现在,我想在警告框中输出它。