How do I specify in HTML where the form data is to be sent when the form is submitted?

王林
Release: 2023-09-18 23:01:02
forward
1234 people have browsed it

How do I specify in HTML where the form data is to be sent when the form is submitted?

Add the file using the action attribute, where you want to be after clicking the Submit button. You can also add an email to send data to that email ID.

Example

You can try running the following code to set where the form is submitted as HTML when the form data is sent to -

<!DOCTYPE html>
<html>
   <body>
      <h2>Student Contact Form</h2>
      <form action = "mailto:emailid@example.com" method = "post" enctype = "text/plain">
         Student Name:<br><input type = "text" name = "sname"> <br>
         Student Subject:<br><input type = "text" name = "ssubject"><br>
         <input type = "submit" value = "Send">
      </form>
   </body>
</html>
Copy after login

The above is the detailed content of How do I specify in HTML where the form data is to be sent when the form is submitted?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template