不是在一个表单中,值怎么会提交!!!!
并且表单也不会跨页啊!!!

解决方案 »

  1.   


    1.数据提交页面(input1.php).
    <script language="php">
    ...
    <form method="POST" action="input1s.php" onsubmit='T1.value=parent.frames[0].window.form1.T1.value;'>
    <table width="100%" cellSpacing="0" cellPadding="0" border="0">
    <tr>
    <td>
    <input type="hidden" name="T1" value="">
    <iframe name=hqlist  frameborder="0" scrolling="auto" src="input11.php">
    </iframe>
    </td>
    </tr>
    </table>
    </form>
    ...
    </script>
    2.input11.php页面
    .....
    <form name='form1' method="POST" action="">
    <input type="text" name="T1" size="20" value="1234">
    </form>
    .....