Can I send data without using the submit button

I am in a situation using two submit buttons on the same page. Is there an alternative to email data without a submit button?

+3
source share
5 answers

If you do not want the submit button, you can do this with the help of links.

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

<script>
function submit_form()
{
  document.form_name_here.submit();
}
</script>
+11
source
+5
source

. curl ( libcurl php) POST.

+1

, , javascript. , , .

0

document.form_name.submit();
document.form_name_1.submit();
0

Source: https://habr.com/ru/post/1724478/


All Articles