HTML Double Action:如何同时发送表单和删除列?

时间:2014-05-03 01:19:15

标签: php html button

是否可以在html中提供一个提交数据的按钮,同时可以删除一些数据?我在这里:

 ...some form inputs here...

 <a href="<?php echo base_url();?>index.php/report/deleteRequest/<?php echo $id; ?>" type="button" class="btn btn-default" onclick="return confirm('are you sure to reject this request?')">Reject</a>
  <button type="submit" class="btn btn-primary">Accept</button>
  <a href="<?php echo base_url();?>index.php/report/" type="button" class="btn btn-default">Back</a>

我希望我的接受按钮在接受请求后删除它。所以基本上,我需要让那些工作同步。那可能吗?如果没有,我知道还有另一种方式。

1 个答案:

答案 0 :(得分:0)

提交表单不会“接受”或“删除”任何内容 - 它只是将数据传递给表单操作中定义的脚本。您需要在脚本中使用一个函数将数据传递给您所需的函数,并使用您传递的数据触发它。 因此,如果你要发布deleteRequest.php(或.asp或其他),它将有

If ($_POST ['addAndDelete'] == 'true')
{
//add stuff
//delete stuff
//launch a rocket
}