我的网站有问题。我创建了一个名为config.php
的主文件,在其中创建了变量,并在文件末尾添加了导入。 [ import('auth.php'); ]
问题是,当我尝试访问变量时,出现此错误:
注意:第19行的未定义变量website_url ...这是代码 我用来访问var $ website_url;
function LoadRegister() {
if(isset($_SESSION['auth_Logged']) && $_SESSION['auth_Logged'] == 0 || !isset($_SESSION['auth_Logged'])) {
include("html/auth_register.php");
}
if(isset($_SESSION['auth_Logged']) && $_SESSION['auth_Logged'] == 1 && isset($_SESSION['auth_Name'])) {
Redirect($website_url);
}
echo $website_url;
}
在主页上,变量看起来像这样:
// Database ( MYSQL )
$dbuser = "root";
$dbpass = "";
$dbhost = "localhost";
$dbname = "ptools";
// -------------------
// Website details
$website_url = "http://localhost/ptools";
$register_page = "http://localhost/ptools/register.php";
// ---------------