gpt4 book ai didi

PHP + MariaDB - 让 PHP 显示一次 MySQL 结果?

转载 作者:行者123 更新时间:2023-11-29 13:20:04 25 4
gpt4 key购买 nike

我对网络开发还很陌生,我必须将所有新东西链接在一起。我试图让这个简单的 MySQL + PHP 脚本工作,但是,我似乎得到了重复两次的结果。

这是我的结果。

Array
(
[0] => Matthew John
[fullname] => Matthew John
)

这是整个数据库及其一个表。

DB    : Milky
Table : userinfo

id | fullname | username | email
---+--------------+-------------+----------------------
1 | matthew john | matierpixel | matierpixel@gmail.com

我使用的代码来自 W3Schools。

$db = mysqli_connect("localhost", "root", "********", "milky");
$query = mysqli_query($db, "SELECT fullname FROM userinfo");

$result = mysqli_fetch_array($query);
print_r($result);

我不知道这是否有助于获得答案,但我使用的是 nginx 服务器,PHP 链接为 FastCGI。

谢谢, Material 像素

最佳答案

由于您没有定义结果类型,mysqli_fetch_array 可能会同时提供数字数组和关联数组。您可以使用mysqli_fetch_assoc来代替只获取后者。

关于PHP + MariaDB - 让 PHP 显示一次 MySQL 结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20963161/

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