我不知道为什么会这样,我不断收到此错误警告:
mysqli_stmt :: bind_param():变量数量与预备语句中的参数数量不匹配
$stmt = $conn->prepare("SELECT clicks FROM affiliate WHERE ID ='$ID'");
$stmt->bind_param("i", $ID);
$stmt->execute();
$stmt->bind_result($clicks); // Store the result in the $clicks variable
答案 0 :(得分:-1)
使用'$ID'
替换查询中的?
。问号用于标记需要绑定的变量。