PHP/HTML: require_once(config.php): 无法打开流:没有那个文件或目录

PHP/HTML: require_once(config.php): failed to open stream: No such file or directory

这里只是简单的问题。

我将 dashboard.php 放在文件夹

pages/dashboard/dashboard.php.

但是错误和我的问题一样。我可以知道如何解决这个问题吗?

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

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

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