这么多分,怎么还每人回答呢,我没用php.帮你顶一下

解决方案 »

  1.   

    是呀,哪位高手帮我解决了就立即揭贴
    help~~~~~
      

  2.   

    楼主可以这样试试:
    <?php
    echo "<frame src=\"view.php?place=".$_GET['place']."\">";
    echo "<frame scrolling=no src=\"talk.php?place=".$_GET['place']."&name=".$_GET['name']."\">";
    ?>
      

  3.   

    调试的时候在每个框架上点右键看看,url参数是否正确,
    若正确,就是talp.php与view.php问题
    若不正确,就是frame.php问题啦
      

  4.   

    早试过了,你说的我也试过,下面的我也试过:
    <frameset rows="70%,30%">
    <?php
    $place=$GET['place'];
    $name=$GET['name'];
    echo "<frame src=\"view.php?place=".$place."\">";
    echo "<frame scrolling=no src=\"talk.php?place=".$place."&name=".$name."\">";
    ?>
    </frameset>
    都不行~~~~~~~~在view.php和talk.php中用$_GET['name']取到的是空字符串
    可地址栏里明明看到有
      

  5.   

    <frame src="view.php?place="><frame scrolling=no src="talk.php?place=&name="></frameset>
    这就是查看源文件里的部分内容
      

  6.   

    看这原因是压根view.php/talk.php就没接受到参数.
    也就是讲,问题是出在frame.php上了.
    难道,
    楼主print_r($_GET),看看有什么问题吧,
    <?php
    print_r($_GET);
    echo "<frame src=\"view.php?place=".$_GET['place']."\">";
    echo "<frame scrolling=no src=\"talk.php?place=".$_GET['place']."&name=".$_GET['name']."\">";
    exit
    ?>
    就写这一段试试看,看问题在什么地方
      

  7.   

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log.
    --------------------------------------------------------------------------------Apache/2.0.50 (Win32) Server at localhost Port 80
      

  8.   

    to  screend(流浪小子) :
    只要一用到$_GET就报这错误
    你最开始说的那样做也是报这错误
      

  9.   

    是不是appache的配置有问题???
      

  10.   

    这个不是配置问题啦,apache自身问题,建议备份配置文件,然后重装:
    apache2.0.49+php4.3.8不错
      

  11.   

    对啊,因为你一旦用$_GET变量apache就有错误,这应该是个大问题了,重装也很容易啊,只要把以前的配置文件备份好了,就可以了
      

  12.   

    可我其他程序用到GET时好好的啊,我觉得上配置没好吧