我在本地网站上工作,我正在尝试向其中添加联系表格。
我在: 上添加了一个简单的表单http:localhost:8888/testsite/contact.php
,当用户单击提交按钮时,我希望他们被重定向到另一个带有消息的页面。我希望用户在提交表单后转到的页面:contact_message.php
.
我已经创建了这两个文件,并且它们都在 URL 上显示 OK -http:localhost:8888/testsite/contact.php
但是http:localhost:8888/testsite/contact-message.php
表单无法正常工作,因为当您单击提交时,url 更改为: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>
有人有什么想法吗?