What is "form"

Forms are delimited by tags <form> and </form>, and allow you to group various form elements (buttons, seizure fields, among others).

The following attributes are the most relevant:

  • method indicates in which form the "POST" responses will be sent is the value that corresponds to a sending of data stored in the order body, while "GET" corresponds to a sending of data encoded in the URL, and separated from the certificate address by a question mark (for more information on the POST and GET methods, refer to the article on the HTTP protocol). If the attribute is omitted, the default is GET.

  • action specifies the URL of the script to which the form will be sent. The default is the URL where the form is located.

Here is the syntax of the FORM tag:

<form method="POST" action="url"> <!-- ou method="GET" -->
...
</form>