質問編集履歴

2

訂正しました。

2020/06/26 11:55

投稿

ponchineey09083
ponchineey09083

スコア16

test CHANGED
File without changes
test CHANGED
@@ -1,8 +1,8 @@
1
- 送信ボタンを押すと、{"code":"MethodNotAllowedError","message":"POST is not allowed"} と表示され、phpファイルに繋がりません。
1
+ 送信ボタンを押すと、{"code":"MethodNotAllowedError","message":"POST is not allowed"} というエラーが次のページに表示され、phpファイルに繋がりません。
2
2
 
3
3
  phpファイルはWindows→Xampp→htdocに保存しています。
4
4
 
5
- コードの間違えがないか確認しても原因が見つかりません。
5
+
6
6
 
7
7
 
8
8
 
@@ -73,3 +73,71 @@
73
73
  コード
74
74
 
75
75
  ```
76
+
77
+
78
+
79
+ ```<form action="mail.php" method="post">
80
+
81
+ <table border="1" cellspacing="0" cellpadding="10">
82
+
83
+ <tr>
84
+
85
+ <th>姓</th>
86
+
87
+ <td><?php echo $_POST["text1"]; ?></td>
88
+
89
+ </tr>
90
+
91
+ <tr>
92
+
93
+ <th>姓(ふりがな)</th>
94
+
95
+ <td><?php echo $_POST["test2"]; ?></td>
96
+
97
+ </tr>
98
+
99
+ <tr>
100
+
101
+ <th>名</th>
102
+
103
+ <td><?php echo $_POST["text3"]; ?></td>
104
+
105
+ </tr>
106
+
107
+ <tr>
108
+
109
+ <th>名(ふりがな)</th>
110
+
111
+ <td><?php echo $_POST["text4"]; ?></td>
112
+
113
+ </tr>
114
+
115
+ <tr>
116
+
117
+ <th>メールアドレス</th>
118
+
119
+ <td><?php echo $POST["email"]; ?></td>
120
+
121
+ </tr>
122
+
123
+ <tr>
124
+
125
+ <th>内容</th>
126
+
127
+ <td><?php echo $POST["textarea"]; ?></td>
128
+
129
+ </tr>
130
+
131
+ </table>
132
+
133
+
134
+
135
+ <input type="submit" value="送信">
136
+
137
+
138
+
139
+ </form>
140
+
141
+ コード
142
+
143
+ ```

1

誤字

2020/06/26 11:55

投稿

ponchineey09083
ponchineey09083

スコア16

test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  <form action="confirm.php" method="post">
14
14
 
15
- <h1>お仕事のご依頼・お問い合わせ</h1>
15
+ <h1>お問い合わせ</h1>
16
16
 
17
17
  <table border="1" cellspacing="0" cellpadding="10">
18
18