How to redirect to another page using PHP

前端 未结 12 1371
粉色の甜心
粉色の甜心 2020-12-02 16:50

I am building a website which includes a login page. I need to redirect the user to their profile page once they\'ve logged in successfully, but I don\'t know how to do that

12条回答
  •  自闭症患者
    2020-12-02 17:25

    On click BUTTON action

       if(isset($_POST['save_btn']))
        {
            //write some of your code here, if necessary
            echo' ';
         }
    

提交回复
热议问题