Specify Where to Send Form Data When Submitted in HTML



Use the action attribute to add the file, where you want to reach after clicking Submit button. You can also add an email to send the data to that email-id.

Example

You can try to run the following code to set where to send the form-data when a form is submitted in HTML −

<!DOCTYPE html>
<html>
   <body>
      <h2>Student Contact Form</h2>
      <form action = "mailto:[email protected]" 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>
Updated on: 2020-03-02T12:39:42+05:30

588 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements