header('Location:'.$_SERVER['HTTP_REFERER']);或者用meta 或者用document.location 都可以

解决方案 »

  1.   

    header("Location:url")不是可以跳转到任何页面吗?你还想干什么呢?
      

  2.   

    response.redirect("url")    --asp
    location.href="url";        --script
      

  3.   

    如果要通过提示的话那只能返回 提示页 header('Location:'.$_SERVER['HTTP_REFERER']);不然只能用参数了```
      

  4.   

    js
    window.location.href="url";
    php
    header("Location:url");
      

  5.   

    用cookie或者session传参数都可以
    用GET和 POST在页面中间传也可以
    总会有办法解决
      

  6.   

    传参过去吧,或者临时写入session里面。