gpt4 book ai didi

php - 我想使用 PHP 更新 MySQL 数据库表

转载 作者:行者123 更新时间:2023-11-29 20:51:03 25 4
gpt4 key购买 nike

我的表名为 servicii,有 3 个变量:id、nume、pret。我有这段代码,但不起作用。谢谢。

if(isset($_POST['btnUpdate2']))
{
$stmt = $conn->prepare("UPDATE servicii SET nume =?, pret=? WHERE id=?");
$nume = $_POST['txtNume'];
$pret = $_POST['txtCantitate'];
$id = $_POST['selectProd'];
$stmt->bind_param("iii", $nume, $pret, $id);
$stmt->execute();
$stmt->close();
$_SESSION['msg'] = "Product successfuly updated!";
}

This is my databasestrong text

最佳答案

尝试回显 错误

试试这个

if ($stmt->execute()) { 
$_SESSION['msg'] = "Product successfuly updated!";
} else {
$_SESSION['error'] = "Product not updated!";
}

或者如果你想知道错误使用这个

if(!$stmt->execute()) echo $stmt->error;

关于php - 我想使用 PHP 更新 MySQL 数据库表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38047399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com