我正在尝试使用具有相同名称的提交按钮从数据库中检索信息。我给出的值是行的 id,所以我可以做出不同的动作,但我无法下定决心如何做到这一点。
例如,当这样尝试时
<form name="form" action="index.php" method="post">
<input type="image" name="x" value="1">
<input type="image" name="x" value="2">
</form>
和 php =>
<?php
if (isset($_POST['x'])){
echo $_POST['x'];
}
?>
在chrome中它工作正常,但在其他浏览器中它没有,有什么想法吗?谢谢
更新
if ($r = $con->query("SELECT * FROM table")){
if ($row = $r->fetch_assoc()){
echo "<input type='image' name='submit' value='" . $row['id'] . "'>";
// and other data which I need to
}
$r->free();
}
我的意思是这样