回答編集履歴
2
chousei
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
</script>
|
20
20
|
|
21
|
-
<form action="sample.php" method="POST" target="newWin">
|
21
|
+
<form action="sample.php" method="POST" target="newWin" id="f1">
|
22
22
|
|
23
23
|
<input name="a" value="123">
|
24
24
|
|
1
chousei
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
</script>
|
20
20
|
|
21
|
-
<form action="
|
21
|
+
<form action="sample.php" method="POST" target="newWin">
|
22
22
|
|
23
23
|
<input name="a" value="123">
|
24
24
|
|
@@ -27,3 +27,13 @@
|
|
27
27
|
</form>
|
28
28
|
|
29
29
|
```
|
30
|
+
|
31
|
+
//sample.php
|
32
|
+
|
33
|
+
```PHP
|
34
|
+
|
35
|
+
<?PHP
|
36
|
+
|
37
|
+
print_r($_POST);
|
38
|
+
|
39
|
+
```
|