gpt4 book ai didi

PHP 和 MySQL 不允许查询

转载 作者:行者123 更新时间:2023-11-30 22:00:21 25 4
gpt4 key购买 nike

我正在为 friend 编写一些代码,但我的 PHP 代码拒绝查询数据库,即使我将其简化为不使用变量运行也是如此。

$sql = "SELECT message1, message2 FROM cards WHERE number = 5150671";
if ($conn->query($sql) === TRUE) {
Echo "Connection to the Database Success, Card Information Recieved.";
$Message1 = $_row["message1"];
$Message2 = $_row["message2"];

...等等

完整代码: https://pastebin.com/jGs2xBFD

它每次都返回查询失败错误,数据库、表和行都已正确命名并且值都在其中。

cards @door_sign (localhost_3306) - 表格号码 留言1 留言25150671 1 2

任何输入将不胜感激。

最佳答案

遗漏了什么?

$result= $conn->query($sql);
while($row = $result->fetch_assoc()) {
//stuff for the thing
}

关于PHP 和 MySQL 不允许查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43600112/

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