Can I post data without using submit button

html, php, submit

Solution

If you don't want a submit button, you can do so using links too.

<a href="#" onclick="submit_form(); return false;">Submit</a>

<script>
function submit_form()
{
  document.form_name_here.submit();
}
</script>

Problem

I am in a situation using two submit buttons in a same page. Is there any alternative to post data without using submit button?

Original source