<meta http-equiv=refresh content='1;url=index.php'>

解决方案 »

  1.   

    header("Location:xxx.php?a=bb");
    见:
    http://www.csdn.net/expert/topic/876/876165.xml?temp=.3509027
      

  2.   

    <script>
    url="submit.php?var=<?=$value?>";
    window.location=url;
    </script>
      

  3.   

    就是冷雨的方法,不过好像是 window.location.href=url吧
      

  4.   

    还有一种方法:
    <script>
    window.open('url,'','_self');
    </script>
      

  5.   

    给分吧,保证好用!!!
    <?
    $page="index.php?bianliang=".$bianliang;
    echo "<SCRIPT>window.location = \"".$page."\"; </SCRIPT>";
    ?>
      

  6.   

    <meta http-equiv=refresh content="1;url=index.php?aaa=<? echo $aaa ?>">