当前位置: 代码迷 >> PHP >> php里面如何调用其他的php
  详细解决方案

php里面如何调用其他的php

热度:209   发布时间:2012-03-28 15:40:03.0
php里面怎么调用其他的php
我想把主页改成其他的.
是dede的系统.在member里面主页不想要了,想改成文章发布页
直接把整个index.php写成了
<?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
  相关解决方案