当前位置:Gxlcms > PHP教程 > php里面如何调用其他的php

php里面如何调用其他的php

时间:2021-07-01 10:21:17 帮助过:12人阅读

php里面怎么调用其他的php
我想把主页改成其他的.
是dede的系统.在member里面主页不想要了,想改成文章发布页
直接把整个index.php写成了
include("http://127.0.0.1/member/content_list.php?channelid=17");
?>

提示错误

Warning: include() [function.include]: http:// wrapper is disabled in the server configuration by allow_url_include=0 in G:\wampserver\wamp\www\member\index.php on line 2

Warning: include(http://127.0.0.1/member/content_list.php?channelid=17) [function.include]: failed to open stream: no suitable wrapper could be found in G:\wampserver\wamp\www\member\index.php on line 2

Warning: include() [function.include]: Failed opening 'http://127.0.0.1/member/content_list.php?channelid=17' for inclusion (include_path='.;C:\php5\pear') in G:\wampserver\wamp\www\member\index.php on line 2

------解决方案--------------------
令 php.ini
allow_url_include = On

人气教程排行