我有 html 表单
我正在使用<a href="#" onclick="document.aa.submit()">
而不是提交按钮
我的代码将更好地解释我的问题..
<html>
<form name="aa" action="aa.php" method="post">
<input type="checkbox" name="posts[]" value="1">
<input type="checkbox" name="posts[]" value="2">
<a href="#" onclick="document.aa.submit()">Delete</a>
<a href="#" onclick="document.aa.submit()">Move</a>
</form>
</html>
aa.php
<?php
print_r($_POST);
?>
结果
Array ( [posts] => Array ( [0] => 1 [1] => 2 ) )
现在的问题是:
如何知道用户点击了删除或移动?
笔记:
我知道如果我使用<input submit>
它会解决问题
但由于某种原因我不能使用提交按钮
笔记2
问题是如何通过php检测它。
例子:
Array ( [posts] => Array ( [0] => 1 [1] => 2 ['submit'=>'delete']) )
if('delete'){
mysql_query("delete from...")
}
else{
mysql_query("update/move ....");
}