実際には、ボタンを押すと、私は関数を呼び出すと、これを介していくつかのデータをdbで更新したいと思います。ここでAJAXを介して状態を変更したい
は私のコードです:
echo "<button type='button' class='btn btn-info btn-md' id='click' onclick='loadDoc()'>Approve</button>";
// as the button is click loadDoc() is call
loadDoc()
コードはここにある:ここで
function loadDoc()
{
var xhttp = new XMLHttpRequest();
xhttp.open('GET', 'updatebox.php', true);
xhttp.send();
document.getElementById('demo').innerHTML = 'hello';
}
は私updatebox.php
です:
<?php
include_once("Order.php");
include("connection.php");
$query="UPDATE orders
SET status='cooking'
WHERE order_id='this.order_id'";
$filter_Result=mysqli_query($connection,$query);
// here is the problem i just want to update some data into my table and after that i want to remove the button
?>
あなたはajax成功の送信ボタンを非表示にしたいですか?私は正しい? – Apb
SQL入門チュートリアルが必要なようです。 UPDATEとINSERTステートメントについて学んでください。 – Quentin
@Quentin SQLクエリはテスト目的のみのものです –