-2

编辑:调用脚本有效,但传递我的参数仍然有问题。

这是processdonateditems.php

if($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['id']) && isset($_POST['type'])) {

    $scripttype =mysql_real_escape_string($_POST['type']);

    if($scripttype == "cancel") {
              ....

这是我必须提交此表单的按钮

<input type="button" value="Confirm Sent" class="btn" <?php if($fetch_donate3['claim_status']=='1'){?> enabled <?php } else {?> disabled <?php }?>>

 <input type="button" value="Cancel Donation" class="btn")
  ...
</form>
4

1 回答 1

1

你的按钮有type="button"。如果你想让他们中的一些人提交他们应该包含的表格

type="submit"

如果不是这种情况,那么使用 javascript 提交这样的表单:

document.getElementById("change_donate").submit();

编辑:

要接收 $_POST['id'] 和 $_POST['type'] 您需要在表单中包含这些元素。比如这样:

<input type="hidden" name="id" value="" />
<input type="hidden" name="type" value="" />
于 2013-08-25T10:48:38.480 回答