質問編集履歴
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
```
|
71
|
+
```html php
|
72
72
|
|
73
73
|
<!DOCTYPE html>
|
74
74
|
|
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,9 +1,113 @@
|
|
1
|
-
post で送信された値を示す @$_POST が
|
1
|
+
post で送信された値を示す @$_POST を使い、送信先の form.php でフォームに入力した値を<p>で出力したいのですが、
|
2
2
|
|
3
|
-
|
3
|
+
![イメージ説明](031643f9973253fdf74f4e49dc01c5ff.png)
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
表示結果が下のようになってしまいます。
|
8
|
+
|
9
|
+
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
|
10
|
+
|
11
|
+
![イメージ説明](4b14fcbed0f096055e3c804adb0fb0ee.png)
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
自分の中では下にある画像の
|
18
|
+
|
19
|
+
「@_POST」の部分が赤色一色になれば成功だと思っていますが、
|
20
|
+
|
21
|
+
原因がよくわかりませんでした。
|
4
22
|
|
5
23
|
![イメージ説明](be40628cbb87e46eee04d99754337103.png)
|
6
24
|
|
7
|
-
![![イメージ説明](d6d386506abbfea3e4d5f7e58aee2d02.png)
|
8
25
|
|
26
|
+
|
27
|
+
下記がコードになります。ご確認と解決方法のご教示を頂けると幸いです。
|
28
|
+
|
29
|
+
宜しくお願い致します。
|
30
|
+
|
31
|
+
```html
|
32
|
+
|
33
|
+
<!DOCTYPE html>
|
34
|
+
|
35
|
+
<html lang="ja">
|
36
|
+
|
37
|
+
<head>
|
38
|
+
|
39
|
+
<meta charset="UTF-8">
|
40
|
+
|
41
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
42
|
+
|
43
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
44
|
+
|
9
|
-
|
45
|
+
<title>job_search</title>
|
46
|
+
|
47
|
+
</head>
|
48
|
+
|
49
|
+
<body>
|
50
|
+
|
51
|
+
<form action="form.php" method="post">
|
52
|
+
|
53
|
+
<p>名前: <input type="text" name="name" value=""></p>
|
54
|
+
|
55
|
+
<p>住所: <input type="test" name="address" value=""></p>
|
56
|
+
|
57
|
+
<input type="submit" name="button" value="送信">
|
58
|
+
|
59
|
+
</form>
|
60
|
+
|
61
|
+
</body>
|
62
|
+
|
63
|
+
</html>
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
```送信先
|
72
|
+
|
73
|
+
<!DOCTYPE html>
|
74
|
+
|
75
|
+
<html lang="ja">
|
76
|
+
|
77
|
+
<head>
|
78
|
+
|
79
|
+
<meta charset="UTF-8">
|
80
|
+
|
81
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
82
|
+
|
83
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
84
|
+
|
85
|
+
<title>Document</title>
|
86
|
+
|
87
|
+
</head>
|
88
|
+
|
89
|
+
<body>
|
90
|
+
|
91
|
+
<p><?php
|
92
|
+
|
93
|
+
echo htmlspecialchars(@$_POST['name'], ENT_QUOTES, 'UTF-8');
|
94
|
+
|
95
|
+
?></p>
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
<p><?PHP
|
100
|
+
|
101
|
+
echo htmlspecialchars(@$_POST['address'], ENT_QUOTES, 'UTF-8');
|
102
|
+
|
103
|
+
?></p>
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
</body>
|
108
|
+
|
109
|
+
</html>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
```
|