I am having trouble trying to get a file to be included into a php script. This file is stored in the root folder, which is not the actual web root, but the root directory that I have access to via the shared hosting account.
我在这一名录中创建了一个文件夹,储存了网站数据。
php_value session.save_path "/usr/home/accountname/sessions"
网络根基将存放在这一名录中:
/usr/home/accountname/public_html/domainname/
我试图做的是,确保掌握数据库连接细节的精髓,其夹象这样:
/usr/home/accountname/includes/
这是目前如何包括档案:
require_once $_SERVER[ DOCUMENT_ROOT ]. /includes/config.php ;
我已尝试这样做:
require_once $_SERVER[ PATH ]. /usr/home/accountname/includes/config.php ;
∗∗∗∗∗
这并不是因为网页上出现空白,这意味着<代码>config.php中界定的变量。 由于该网页没有列入,因此并不活跃。
任何人都能够提供这方面的一些信息,或向我指出解决问题的方向。 此外,将非常赞赏这方面的任何辅导或其他信息。
谢谢!