gpt4 book ai didi

PHP文件连接Mysql在Ubuntu操作系统中显示空白页

转载 作者:行者123 更新时间:2023-11-29 18:39:08 25 4
gpt4 key购买 nike

我想在 Ubuntu 中运行我的 PHP 代码。这是我的代码
只是想在用户表中显示用户

<!DOCTYPE html>
<html>
<head>
<title>Kgam Internship Project</title>
</head>
<body>
<?php
$host = "localhost";
$username = "root";
$password = "password";
$dbConnect = mysql_connect($host,$username,$password);
mysql_select_db(kgam)or die(mysql_error());
if($dbConnect)
{
echo "Database connected";
}else{
echo "Database connect error";
}
$data = mysql_query("SELECT * FROM user") or die(mysql_error());
print"<table width=100% border=1 cellpadding=3>";
print"<tr><td>ID</td><td>UUID</td><td>Name</td><td>Recently Status</td> </tr>";
$i = 0;
while ($info = mysql_fetch_array($data))
{
# code...
echo "Test".$i;
print"<tr><td>".$info['id']."</td>";
print "<td>".$info['uuid'] . "</td>";
print "<td>".$info['uname'] ."</td>";
print "<td>".$info['status'] ."</td></tr>";
$i = $i + 1;

}
print "</table>";
mysql_close($dbConnect);

?>

</body>
</html>

我尝试这个代码在我的窗口上工作,请帮助我我在 Ubuntu 的数据库中有信息我运行时的结果是空白页

最佳答案

我希望错误出现在这一行,您必须输入带单引号的数据库名称mysql_select_db('kgam')

关于PHP文件连接Mysql在Ubuntu操作系统中显示空白页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45050268/

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