虽然没太明白,不过觉得可以将查询条件保存在session中

解决方案 »

  1.   

    看到这么有诚意的主题,偶就进来了.呵呵觉的还是用iframe比较好,方便!
      

  2.   

    不知道有没有理解对楼主的意思,试写了一小段给楼主,看看有没有用了.aaa.php<?php
    echo "<form name=form1 method=post action=aaa.php>";
    echo "  <input type=text name=test value=$_POST[test]>";
    echo '  <input type="submit" name="Submit" value="提交">';
    echo '</form>';
    echo '<hr>';
    echo $_POST['test'];
    ?>
      

  3.   

    <?phpecho "
    <form name=form1 method=post action=".$_SERVER['PHP_SELF'].">
    <input type=text name=test value=".$_POST['test'].">
    <input type=submit name=submit value=SUBMIT>
    </form>";echo $_POST['test'];