为什么html中的这个表单没有提交?

时间:2014-06-27 07:44:31

标签: php html forms submit

我不明白为什么,但是当我打开表格所在的html文件时,我填补所有空白,然后点击提交按钮,但任何事情都会发生。

<form method="post" action="PHP FILE">
<label>NAME*</label>
<input type="text" name="name" placeholder="YOUR NAME">
<label>EMAIL*</label>
<input type="text" name="email" placeholder="YOUR EMAIL”>
<label>CATEGORY*</label>
<select name="category">
<option value="1">FIRST</option>
<option value="2">SECOND</option>
</select>
<label>PHONE*</label>
<input type="text" name="phone" placeholder="YOUR PHONE">
<label>WEBSITE</label>
<input type="text" name="web" placeholder="YOUR WEBSITE”>
<label>MESSAGE</label>
<textarea name="message" placeholder="YOUR MESSAGE"></textarea>
<button type="submit">SEND</button>
</form>

2 个答案:

答案 0 :(得分:1)

占位符的双引号是不同的 确保它们相同

<input type="text" name="email" placeholder="YOUR EMAIL”>

<input type="text" name="web" placeholder="YOUR WEBSITE”>

答案 1 :(得分:-1)

试试这个

<input type="submit" value="SEND"/>

表单的操作必须是某个文件 像abc.php或abc.html

我希望这必须有效