致命错误:调用未定义的函数 phpinclude()
嘿,我正在使用这段代码
<?php
header("Location: ../index.php");
?>
,它只是出现了这个错误:
Fatal error: Call to undefined function phpinclude() in /home/nzcraftn/public_html/filenz/upload/index.php on line 1
出了什么问题?
Hey i am using this code
<?php
header("Location: ../index.php");
?>
and it is just coming up with this error:
Fatal error: Call to undefined function phpinclude() in /home/nzcraftn/public_html/filenz/upload/index.php on line 1
What went wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你已经有了
而它必须是
i guess you've got
<?phpinclude(...) ?>
when it must be<?php include(...) ?>