What are the form method Attribute available for submitting?
The method attribute specifies how to send form-data. "GET" and "POST" are two methods to send form data to another page.
<form action="welcome.php" method="post">
// form elements will be placed here
</form>
<form action="welcome.php" method="get">
// form elements will be placed here
</form>
Learn more about the similar topics:
| Tutorials |
|---|
| No Content Found. |
| Exercises & Assignments |
|---|
| No Content Found. |
| Interview Questions & Answers |
|---|
| No Content Found. |