我正在尝试为我的应用程序创建一个登录系统,并且需要使用php。但是我对php真的很新,所以我遇到了错误。首先,我现在正在使用免费的网络托管,所以这可能是问题所在。话虽这么说,这是我的PHP的错误部分:
<?php
require_once 'include/DB_Functions.php';
?>
它给了我这个错误:
Warning: require_once(include/DB_Functions.php): failed to open stream: No such file or directory in /srv/disk3/1965965/www/yigittest.atwebpages.com/login.php on line 2
Fatal error: require_once(): Failed opening required 'include/DB_Functions.php' (include_path='.:/usr/local/php-5.4.45/share/pear') in /srv/disk3/1965965/www/yigittest.atwebpages.com/login.php on line 2
但是,我的include文件夹包含所有必需的php文件。那么问题可能是什么呢?
答案 0 :(得分:0)
试试此演示代码或plz分享您的文件夹结构
require_once(__DIR__.'/../include/DB_Functions.php');