How to place two forms on the same page?

后端 未结 6 995
借酒劲吻你
借酒劲吻你 2020-11-28 10:18

I want to place both register and login form on the same page.
They both starts with:

if (!empty($_POST)) ... 

so, I need something l

6条回答
  •  误落风尘
    2020-11-28 10:49

    Here are two form with two submit button:

    And here is your PHP code:

    if (isset($_POST['btnPostMe1'])) { //your code 1 }
    if (isset($_POST['btnPostMe2'])) { //your code 2 }
    

提交回复
热议问题