Home > Article > Web Front-end > 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.
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>
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!