为什么表单忽略提交?

时间:2015-11-12 13:49:58

标签: html forms

我开始提问题提交页面:

<!DOCTYPE html>
<html>
 <head>
  <title>Question</title>
 </head>
<body>
<from action="contformer.php" method="post">
<input name="mail" type="text" size="50" placeholder="Please enter your email, so we can contact you back."><br>
<input type="text" name="sub" placeholder="Enter the subject here"><br>
<input type="text" name="q" size="50"><br>
<input type="submit" value="Submit your question">
</form>
</body>
</html>

当我点击&#34;提交您的问题&#34;有人知道为什么它什么都不做按钮?

2 个答案:

答案 0 :(得分:1)

您遇到语法错误 应该有形式而不是行动

答案 1 :(得分:0)

请将<**from** action="contformer.php" method="post">更改为表单

相关问题