javascript php フォームについて
javascriptで作ったフォームをphpに送信したいのですが、上手く送信できません。
どのようにすれば上手く送信することができるでしょうか?
回答お願いします。
javascript側のソース
<body>
<form name="nform1" method="POST" action="./kaitou1.php" enctype="text/plain">
<p>問1</p>
<p>
(1)<input type="text" name="kaitouran11" size="20">
(2)<input type="text" name="kaitouran12" size="20">
(3)<input type="text" name="kaitouran13" size="20">
(4)<input type="text" name="kaitouran14" size="20">
</p>
</form>
<form name="nform2" method="POST" action="./kaitou1.php" enctype="text/plain">
<p>問2</p>
<p>
(1)<input type="text" name="kaitouran21" size="20">
(2)<input type="text" name="kaitouran22" size="20">
(3)<input type="text" name="kaitouran23" size="20">
(4)<input type="text" name="kaitouran24" size="20">
</p>
</form>
<form name="nform3" method="POST" action="./kaitou1.php" enctype="text/plain">
<p>問3</p>
<p>
(1)<input type="text" name="kaitouran31" size="20">
(2)<input type="text" name="kaitouran32" size="20">
(3)<input type="text" name="kaitouran33" size="20">
(4)<input type="text" name="kaitouran34" size="20">
</p>
</form>
<input type="button" value="送信" onClick="send()">
</body>
php側のソース
<body>
<p>問1</p>
<p>(1)<?php print(htmlspecialchars($_POST['kaitouran11'], ENT_QUOTES, 'UTF-8')); ?>
(2)<?php print(htmlspecialchars($_POST['kaitouran12'], ENT_QUOTES, 'UTF-8')); ?>
(3)<?php print(htmlspecialchars($_POST['kaitouran13'], ENT_QUOTES, 'UTF-8')); ?>
(4)<?php print(htmlspecialchars($_POST['kaitouran14'], ENT_QUOTES, 'UTF-8')); ?>
</p>
<p>問2</p>
<p>(1)<?php print(htmlspecialchars($_POST['kaitouran21'], ENT_QUOTES, 'UTF-8')); ?>
(2)<?php print(htmlspecialchars($_POST['kaitouran22'], ENT_QUOTES, 'UTF-8')); ?>
(3)<?php print(htmlspecialchars($_POST['kaitouran23'], ENT_QUOTES, 'UTF-8')); ?>
(4)<?php print(htmlspecialchars($_POST['kaitouran24'], ENT_QUOTES, 'UTF-8')); ?>
</p>
<p>問3</p>
<p>(1)<?php print(htmlspecialchars($_POST['kaitouran31'], ENT_QUOTES, 'UTF-8')); ?>
(2)<?php print(htmlspecialchars($_POST['kaitouran32'], ENT_QUOTES, 'UTF-8')); ?>
(3)<?php print(htmlspecialchars($_POST['kaitouran33'], ENT_QUOTES, 'UTF-8')); ?>
(4)<?php print(htmlspecialchars($_POST['kaitouran34'], ENT_QUOTES, 'UTF-8')); ?>
</p>
</body>
お礼
お返事遅くなりすいません。 問題解決しました。 (1)は、特に何も弄っていないのですが、解決しました。(理由はよくわらりませんが・・) (2)は、教えて頂いたサイトを参考にしたら出来ました。 (3)の「e()」は、参考書の通りに記載したので何を意味しているのかは分かりませんが、取り除いたら、改行出来ました。 ご教示ありがとうございます。