gpt4 book ai didi

php - 脚本不读取过去 while ($stmt->fetch())

转载 作者:行者123 更新时间:2023-11-29 07:32:46 25 4
gpt4 key购买 nike

($stmt->fetch())

服务器不会读取过去
if (isset($_POST['join'])) {
$selectedgame = $_POST['join'];
$stmt = $link->prepare("SELECT tournaments FROM users WHERE username = ?");
$stmt->bind_param("i", $param_username);
if($stmt->execute()) {
//will read up until this point
while ($stmt->fetch()) {
//won't read here e.g. won't echo anything
$stmt->bind_result($usertournaments);
if ($usertournaments == 0) {

我不知道是什么导致了这个问题,mysqli_error($link) 什么也没给出,指令没有错,检查了一百万次

请帮助D:

最佳答案

$stmt->bind_param("i", $param_username);
^

bind_param 的第一个值是数据类型。 i 是一个整数。我猜 username 始终是一个字符串,因此您应该使用 s

$stmt->bind_param("s", $param_username);

还有 $param_username 设置了吗?看起来 POST 值被设置为 $selectedgame,不确定是否相关。

关于php - 脚本不读取过去 while ($stmt->fetch()),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50448590/

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