大家好,有人可以帮我弄清楚为什么这段代码没有插入数据库?我设置$ code = NULL;它不起作用。它只有在我将$ code的值更改为不同的东西时才有效,我做错了什么?
$query1= $con->prepare("INSERT INTO `Subscribers` (`Name`, `Email`, `Instagram`, `Code`, `ReferredBy`) VALUES ('$name', '$email', ?, ?, ?)");
/* bind parameters for markers */
$query1->bind_param("sss", $instagram, $code, $leadid);
/* execute query */
$query1->execute();
$query1->close();
$con->close();