請求書が大量にあるページがあり、請求書を削除してから削除されたことを確認できるようにしたいと考えています。
私が現在使用しているのは(HTML / PHPをよく知らないので、他のコードをろくでなしにする...!)
<form name="form1" action="deleteinvoice.php" method="post">
<input name="invoiceid" type="number" size="20"/>
<input id="input"
type='submit'
value='Delete'
onclick="form1.action='deleteinvoice.php';target='my-iframe'"
class="button save-big"
disabled="disabled" >
<input type="checkbox"
name="agree"
value="yes"
onclick="input.disabled = !this.checked" />Confirm you have the correct invoice number
</form>
<iframe name="my-iframe" src="deleteinvoice.php" style="display:none"></iframe>
これは、請求書を削除している限りは正常に機能しています (deleteinvoice.php ページが機能していることはわかっています) が、それで実際にできることは、表示していたページを更新して、削除された請求書が消え、フォームは再び空白です。
考え?