如何在php中以不同形式的提交按钮获取无线电值?

时间:2017-04-08 03:52:29

标签: php html

我在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。现在,我想在警告框中输出它。

0 个答案:

没有答案