gpt4 book ai didi

php - MySQL PHP : Can't get any results

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:59 25 4
gpt4 key购买 nike

<分区>

我试图用 PHP 打印我的 MySQL 数据库的内容。

这是我的数据库的样子:

mysql> show tables;
+-------------------+
| Tables_in_myTable |
+-------------------+
| users |
+-------------------+
1 row in set (0,00 sec)

mysql> select * from users;
+------------+
| name |
+------------+
| Nick |
+------------+
1 row in set (0,00 sec)

我的 PHP 代码如下所示:

    <?php
echo "HI"; //to see, that the php gets runned at all.

$connection = mysql_connect('localhost', 'root', ''); //The Blank string is the password
mysql_select_db('myTable');

$query = "SELECT * FROM users";
$result = mysql_query($query);

echo "<table>";

while($row = mysql_fetch_array($result)){
echo "<tr><td>" . $row['name'] . "</td></tr>";
}

echo "</table>";

mysql_close();
?>

但是在网站上,我得到的唯一输出是

"HI"

我在我的 PHP 中检查了用户名、密码和数据库名称。

我在 Ubuntu(Ubuntu Gnome,如果重要的话)16.10 和 MySQL 的社区版本上运行 apache2 服务器

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