複数のフォームから送信
複数のフォームからtextの値を送信したいのですができますか?〒番号を入力して検索ボタンをおすと住所がでてきて最後に登録をしたいです。検索だけのプログラムはできてますがフォームを二つにすると両方のsubmitが登録になります・・・
一応自分でいろいろためしましたがだめでした。。。
html,php,javascriptです。
二つともだめでした。。。。
rei1.php
-------------------------
<html>
<body
<form method="POST" action="1.php">
お名前:<input type="text" name="name">
<br> <br>
<form method="POST" action="yubin.php">
〒:<input type="text" name="yubin">
<input type="submit" value="検索">
<br>
住所:<input type="text" name="zyu">
<br>
</form>
メールアドレス:<input type="text" name="email">
<br>
<input type="submit" value="登録する">
</form>
</body>
</html>
--------------------------------------
rei2.php
--------------------------------------
<html>
<head>
<script language="javascript"><!--
function send() {
document.nform.submit();
document.nform2.submit();
document.nform3.submit();
}
//--></script>
</head>
<body>
<form name="nform" method="POST" action="1.php">
お名前:<input type="text" name="name">
<br> </form>
<form name="nform2" method="POST" action="yubin.php">
〒:<input type="text" name="yubin">
<input type="submit" value="検索">
<br>
住所:<input type="text" name="zyu">
<br> </form>
<form name="nform3" method="POST" action="1.php">
メールアドレス:<input type="text" name="email">
<br>
<input type="submit" value="登録する">
</form>
</body>
</html>
------------------------------------
お礼
そんなことできるんですね! ありがとうございました。