我是第一次尝试使用预准备语句并使用以下代码遇到以下问题
错误:
警告:mysqli_stmt_bind_param()期望参数1为 mysqli_stmt,给定布尔值
代码:
$stmt = mysqli_prepare($db, "INSERT INTO fragrances VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
mysqli_stmt_bind_param($stmt, 'sssssssssssssssssss', $name, $description, $essentialoils, $topnotes, $middlenotes, $basenotes, $reference, $year, $type, $price, $fragrancehouse, $triangle, $extractname, $extractreference, $extractprice, $extractfragrancehouse, $disccolour, $collarcolour, $actuatorcolour);
mysqli_stmt_execute($stmt);
我在这里看了很多不同的问题,他们的解决方案似乎都没有适用于我的问题,有谁知道问题是什么?
由于