gpt4 book ai didi

php - 准备好的语句 : Function outputs nothing

转载 作者:行者123 更新时间:2023-11-30 23:35:07 26 4
gpt4 key购买 nike

我想做的是回显subjects 表 中的所有行。

附言最近安装了 Xdebug,现在 php 记录错误,但在这种情况下,错误日志中没有错误。

我的函数看起来像那样。什么都不输出。

function genSubjectsList() {
global $db;
$stmt = $db->prepare("SELECT `id`, `subject` FROM `subjects`") or die($db->error);
$row = array();
stmt_bind_assoc($stmt, $row);
while ($stmt->fetch()) {
echo "<input type='checkbox' value='" . $row[0] . "' name='subjects' id='subjects'/>" . $row[1] . "\n";
}
$stmt->close();
}

这个函数有什么问题?

最佳答案

试试这个(未经测试,从 PHP.net 收集):

function genSubjectsList()
{
global $db;
$row = array();

$stmt = $db->prepare("SELECT `id`, `subject` FROM `subjects`") or die($db->error);
$stmt->execute();
$stmt->bind_result($row);

while ($stmt->fetch()) {
echo "<input type='checkbox' value='" . $row[0] . "' name='subjects' id='subjects'/>" . $row[1] . "\n";
}

$stmt->close();
}

关于php - 准备好的语句 : Function outputs nothing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8175098/

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