At times we might need to do several different things with an html form.
Submit form data to specific url using POST and GET methods:
(don't forget to set action if is necessary)
<form name="frm" method="POST" action="">
<input type="submit" name="submit" value="Send"/>
</form>