Submit two forms with one button

后端 未结 7 1508
面向向阳花
面向向阳花 2020-11-22 04:20

I have HTML two forms, one that submits data upon entry to a database using PHP, the other directs the user to a paypal payment page, my problem is that the user would have

7条回答
  •  孤街浪徒
    2020-11-22 04:57

    If you have a regular submit button, you could add an onclick event to it that does the follow:

    document.getElementById('otherForm').submit();
    

提交回复
热议问题