问题出在我身上db.php
包含mysql登录详细信息的文件。我想把它放在一个单独的文件中,这样它就可以链接到几个不同的页面,以便以后更容易跟踪。
这一切在没有wordpress网站的情况下都能正常工作,但我现在正试图将所有内容转换为wordpress,我遇到了一个问题。
下面的内容不起作用(页面上没有任何回应),但如果我从inc/db.php
进入我的page-pricechanges.php
它起作用了。
对我来说,什么是链接此内容的最佳方式?
文件夹结构
价格变化页面。php标题价格更改。php。php页面代码
header-pricechanges.php
<head>
<?php
include \'inc/db.php\';
//I have also tried include get_bloginfo("template_url")\'/inc/db.php\';
//I have tried include \'db.php\' and put db.php in root of site, root of theme folder.. nothing seems to pick it up.
?>
</head>
inc/db.php
<?php
$con=mysqli_connect("localhost","root","", "dbname");
?>
page-pricechanges.php
$query1 = mysqli_query($con, "SELECT * FROM dbname ORDER BY balance DESC")
or die(mysql_error());
while ($row = mysqli_fetch_assoc($query1))
{
$id = $row[\'id\'];
$name = addslashes($row[\'name\']);
echo $id." ".$name."<br>";
}