fopen("http://...news.php");
......

解决方案 »

  1.   

    奇怪!!!!为什么什么内容都没有的???
    代码:
    $url=$r["configother"]."/index.php?id=".$id;
    include("009/index.php?id=19");一片空白
      

  2.   

    不能用include。除非你两个页面之间没什么cookie之类的输出的冲突。
    如果非要用include并确定页面里只有简单的echo这类的东西,用以下方式。$_GET['id']=19;
    include("include/index.php");
      

  3.   

    刚才写的不完整
    用HTML就可以
    <IFRAME ID="ABCD" src="要显示的文件" frameborder="0" scrolling="no" width="550" height="350">
      

  4.   

    require,include,iframe,包括div都可以
      

  5.   

    人家说了不能用框架的啊
    $url="include/new.php";
    $page=file_get_contents($url);
    echo $page;