Create a link for POST form in html.
the only way to submit a form directly from a link is with the GET method. The POST method will allow form submission only from the form itself.
However, it is relatively simple to create a link to a web page with a form using a POST method where the page has a javascript function to submit the form that executes upon page load. You would first need to send the parameters in the GET fashion and then use those values to populate the form input statements.