include(): Failed to open stream: No such file or directory

梦想与她 提交于 2019-12-01 15:36:58

You are using an absolute path (/) at the start of the line, you need to remove that slash and it would be a relative path, example:

production/fetch_order.php

When adding a slash, it starts at the root directory of your system, without it, it looks in the current directory.

Make sure that the path you're referencing ('/production/fetch_order.php') is provided either as an absolute path from the file system root directory or as a relative path from the current file (home.php).

include('production/fetch_order.php');

OR

include(dirname(__FILE__) . '/production/fetch_order.php');

Seems that path is not correct, try:

<? include ("production/fetch_order.php"); ?>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!