回答編集履歴

1

typo

2018/09/03 06:10

投稿

yambejp
yambejp

スコア114968

test CHANGED
@@ -12,8 +12,10 @@
12
12
 
13
13
  ```PHP
14
14
 
15
- $postData1=filter_input(INPT_POST,"leftcard");
15
+ //typo修正 INPT_POST→INPUT_POST
16
16
 
17
+ $postData1=filter_input(INPUT_POST,"leftcard");
18
+
17
- $postData2=filter_input(INPT_POST,"select");
19
+ $postData2=filter_input(INPUT_POST,"select");
18
20
 
19
21
  ```