我无法更新数据库中的产品储备

时间:2019-05-30 08:53:08

标签: php html sql

我正在建立一个电子商店,我想更新数据库中产品的储备金,但是代码无法正常工作。你能看看吗

if (filter_input(INPUT_GET,'checkout')){
$sql="UPDATE tblproduct SET apothema=18 WHERE id=1"}

1 个答案:

答案 0 :(得分:0)

if (filter_input(INPUT_GET,'checkout')){ 
$sql="UPDATE tblproduct SET apothema=18 WHERE id='1'";
// connect to database to run your query so the above query will execute
$run = $conn->query($sql);

//this is optional
//you can use like this to check if your connect is success and data is inserted.
if ($conn->query($sql) === TRUE) {
    echo "New record created successfully";
} else {
    echo "Error: " . $sql . "<br>" . $conn->error;
}
}

我认为问题只在这里WHERE id = '1' ";记住,您需要使用'value to compare',也不要忘记将;放在最后。还有一件事,您需要连接到数据库并运行查询以将数据插入数据库。