【发布时间】:2012-12-27 08:11:23
【问题描述】:
reg.php 在members 文件夹中
<?php include "members/reg.php";?> // doesn't work
<?php include ("members/reg.php");?> // doesn't work
然后我将reg.php替换为与当前文件在同一文件夹中
<?php include "reg.php";?> //doesn't work.
【问题讨论】:
-
尝试添加一些空格-> 虽然不是很确定,但为了清楚起见
-
打开错误报告尝试给出的错误可能是权限问题
-
你是否检查了文件权限(如果你使用的是 Linux)
-
在开发过程中始终use
E_ALL。