gpt4 book ai didi

php - 无法连接到数据库(ITS AUTO COMMENTING)

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

我有一个带有使用 MySQL 和 PHP 的 Portal 的 VPS。所以今天我尝试用WAMP将其安装在我的本地PC上。我无法连接到我的数据库,因此我创建了 test.php,这就是问题所在:

代码: http://www.igreklik.com/slike/images/41599508267923822489.png

<!DOCTYPE html>
<html>
<?php
include 'js/konekcija.php';
?>
<body>
<?php
$counter = 1;
$proveripari = mysql_query("SELECT pIme, pPari FROM igraci ORDER BY pPari DESC LIMIT 10 ;");
if( mysql_num_rows($proveripari) > 0)
{
while ($row = mysql_fetch_array($proveripari))
{
$counter2 = $counter++;
echo($row['pPari']);
}
}
?>
</body>
</html>

我尝试打开时的页面: http://www.igreklik.com/slike/images/99283424889650387796.png(它显示了一半代码,另一半已注释)

您会看到代码中没有写一条注释,所以基本上这就是为什么当我尝试连接到数据库时它没有显示任何错误,这就是为什么我无法显示我的数据库包含的内容。 ..

最佳答案

您必须使用服务器地址而不是绝对文件路径。使用http://localhost/APP/blah.php而不是file:///C:/wamp/www/APP/blah.php。绝对路径无法执行php代码。服务器路径将执行 php 代码。将您的 php 代码和项目文件粘贴到 WAMP 安装目录的 www 文件夹中,然后使用 localhost 地址打开它,因为从您的快照来看您根本没有将文件放入 www 文件夹中.

关于php - 无法连接到数据库(ITS AUTO COMMENTING),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26323869/

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