私はローカルでサイトに取り組んでおり、お問い合わせフォームを追加しようとしています。
に簡単なフォームを追加しました:http:localhost:8888/testsite/contact.php
ユーザーが送信ボタンをクリックすると、メッセージが表示された別のページにリダイレクトされるようにします。フォームを送信した後にユーザーが移動するページ: contact_message.php
.
私は両方のファイルを作成しましたが、どちらもそこの URL で OK を表示しhttp:localhost:8888/testsite/contact.php
ますが、[submit] をクリックすると URL が:にhttp:localhost:8888/testsite/contact-message.php
変更されるため、フォームは機能しません。http:localhost:8888/testsite/contact.php/contact-message.php
contact-message.php
フォームのコードは次のとおりです。
<form method="post" action="contact-message.php">
<table>
<tr>
<th>
<label for="name">Name</label>
</th>
<td>
<input type="text" name="name" id="name">
</td>
</tr>
<tr>
<th>
<label for="email">Email</label>
</th>
<td>
<input type="text" name="email" id="email">
</td>
</tr>
<tr>
<th>
<label for="message">Message</label>
</th>
<td>
<textarea type="text" name="message" id="message"></textarea>
</td>
</tr>
</table>
<input type="submit" value="Send">
</form>
誰にもアイデアはありますか?