首页 > 解决方案 > PHP/HTML:require_once(config.php):打开流失败:没有这样的文件或目录

问题描述

这里只是简单的问题。

我放在dashboard.php文件夹

pages/dashboard/dashboard.php.

但是错误看起来就像我的问题一样。我能知道如何解决这个问题吗?

标签: phphtmldirectoryrequire

解决方案


该错误几乎解释了问题所在:you are trying to include a file that is not there.

您必须在dashboard.php页面上使用它:-

require_once("../../dbconn.php");


推荐阅读