How do I continue a session from one page to another with PHP

后端 未结 8 1613
夕颜
夕颜 2020-11-27 07:34

Ok I set up a session... but now how do I make it work on my other pages?

I tried doing

@session_start();

if(isset($_SESSION[\'$userName\'])) {

 ec         


        
8条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-27 07:57

    1. Create a login page, the user must not login without correct id and passowrd.
    2. After logging in the user comes to the home, here user can logout and goes back to the login page

    NOTE: User must not access home page without going through login page.

提交回复
热议问题