HTML Form
The HTML Form tool generates the code necessary to create an HTML form using the HTML <form> tag. The following options are available via the tool:
Action: This determines the page the form will be submitted to.
Name: This determines the name attribute on the form tag.
Method: This determines whether the form will be submitted as an HTTP GET
or an HTTP POST.
Encoding: This determines the encoding of the form. Options are
application/x-www-form-urlencoded and multipart/form-data
The following is an example of the output generated by the HTML form
tool:
<form name="update_form" action="update.php" method="POST">
</form>