質問編集履歴

7

終端セミコロンを追加しました。申し訳ございません。

2021/07/05 03:45

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -16,9 +16,9 @@
16
16
 
17
17
  $get_logout2 = $_POST['log_out_button'];
18
18
 
19
- var_dump($get_logout1)//NULL
19
+ var_dump($get_logout1);//NULL
20
20
 
21
- var_dump($get_logout2)//logout
21
+ var_dump($get_logout2);//logout
22
22
 
23
23
  ?>
24
24
 

6

調整させていただきました。たびたび申し訳ございません。

2021/07/05 03:45

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  var_dump($get_logout1)//NULL
20
20
 
21
- var_dump($get_logout1)//logout
21
+ var_dump($get_logout2)//logout
22
22
 
23
23
  ?>
24
24
 

5

HTML5ではinputは閉じタグが廃止されているため、正確な文法に修正しました。

2021/07/05 03:39

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  <form class="" action="index.php" method="post">
28
28
 
29
- <input name="log_out_button" type="submit" class="button log_out" title="Sign log_out" value="logout"></input>
29
+ <input name="log_out_button" type="submit" class="button log_out" title="Sign log_out" value="logout">
30
30
 
31
31
  </form>
32
32
 

4

体裁調整しました。

2021/07/05 03:37

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -8,9 +8,9 @@
8
8
 
9
9
  ```html
10
10
 
11
+ <?php
12
+
11
13
  //index.php
12
-
13
- <?php
14
14
 
15
15
  $get_logout1 = filter_input('INPUT_POST','log_out_button');
16
16
 

3

<?php?>の囲いの転記を失念しました。申し訳ございません。

2021/07/05 03:28

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  //index.php
12
12
 
13
+ <?php
14
+
13
15
  $get_logout1 = filter_input('INPUT_POST','log_out_button');
14
16
 
15
17
  $get_logout2 = $_POST['log_out_button'];
@@ -17,6 +19,8 @@
17
19
  var_dump($get_logout1)//NULL
18
20
 
19
21
  var_dump($get_logout1)//logout
22
+
23
+ ?>
20
24
 
21
25
 
22
26
 

2

ご指摘に関連するコードを修正しました。

2021/07/05 03:28

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -7,6 +7,8 @@
7
7
 
8
8
 
9
9
  ```html
10
+
11
+ //index.php
10
12
 
11
13
  $get_logout1 = filter_input('INPUT_POST','log_out_button');
12
14
 
@@ -18,7 +20,7 @@
18
20
 
19
21
 
20
22
 
21
- <form class="" action="#" method="post">
23
+ <form class="" action="index.php" method="post">
22
24
 
23
25
  <input name="log_out_button" type="submit" class="button log_out" title="Sign log_out" value="logout"></input>
24
26
 

1

コードミスを修正しました。

2021/07/05 03:25

投稿

pegy
pegy

スコア245

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ```html
10
10
 
11
- $get_logout1 = filter_input('INPUT_POST','button');
11
+ $get_logout1 = filter_input('INPUT_POST','log_out_button');
12
12
 
13
13
  $get_logout2 = $_POST['log_out_button'];
14
14