質問編集履歴

1

formも追加

2018/02/07 06:31

投稿

kenkbou
kenkbou

スコア151

test CHANGED
File without changes
test CHANGED
@@ -12,6 +12,8 @@
12
12
 
13
13
  ```Html
14
14
 
15
+ <form method="post" accept-charset="utf-8" action="action.php">
16
+
15
17
  <input type="text" name="row[]" value="1" />
16
18
 
17
19
  <input type="text" name="row[]" value="2" />
@@ -21,6 +23,10 @@
21
23
  <input type="text" name="row[]" value="4" />
22
24
 
23
25
  <input type="text" name="row[]" value="5" />
26
+
27
+ <button type="submit">保存する</button>
28
+
29
+ </form>
24
30
 
25
31
  ```
26
32