我想知道哪个是映射<a href=...></a>
执行 HTTP GET 的超链接以执行 HTTP POST 的最佳方式(我想避免在 URL 中传递所有变量)?比如hrefs
下面的2。此外,我还想摆脱submit
按钮并使用常规<a href=...></a>
超链接。有什么建议么?
<form action="test.php?action=update" method="post" id="cart">
<table>
<tr>
<td>
<a href="test.php?action=delete&id=<?php echo $id ?>" class="r">
remove
</a>
</td>
<td>
<a href="test.php?action=add&id=<?php echo $id ?>" class="r">add</a>
</td>
</tr>
<tr>
...
</tr>
</table>
<div> <button type="submit">Update</button> </div>
</form>