質問編集履歴
1
formも追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,11 +5,14 @@
|
|
5
5
|
|
6
6
|
以下のようなHtmlがあったとします
|
7
7
|
```Html
|
8
|
+
<form method="post" accept-charset="utf-8" action="action.php">
|
8
9
|
<input type="text" name="row[]" value="1" />
|
9
10
|
<input type="text" name="row[]" value="2" />
|
10
11
|
<input type="text" name="row[]" value="3" />
|
11
12
|
<input type="text" name="row[]" value="4" />
|
12
13
|
<input type="text" name="row[]" value="5" />
|
14
|
+
<button type="submit">保存する</button>
|
15
|
+
</form>
|
13
16
|
```
|
14
17
|
通常であれば、POSTに入ってくる値は
|
15
18
|
```Html
|