WIPocket
WIPocket

Reputation: 44

Why is the form ignoring submit?

I made a begining of a question submit page:

<!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>

Does anyone know why it does nothing when i click the "Submit your question" button?

Upvotes: 0

Views: 26

Answers (2)

Angen
Angen

Reputation: 410

You have an syntax error There should be form and not from action

Upvotes: 1

Knu8
Knu8

Reputation: 478

Please change <**from** action="contformer.php" method="post"> to form

Upvotes: 0

Related Questions