Is session necessary for user login checking or it can be done alternatively by checking the username with database matching?? If it is done by database checking with the username or email then what is necessecity of Session? please tell me with explanation if possible..thank you
2条回答 默认 最新
dsai1991 2013-08-10 18:54关注Session is a type of cookie that used for tracking user after login! for example: after user submitted username and password, and you did matched against database, then, you probably don't want to authenticate again (re checking username and password for every page hit), therefore, you can save an identifier in session for recognizing user that successfully logged-in.
Usually, seesion will be expired once user closed the windows, while, cookie can be kept for long time.
Basic Logic:
- Check if username and password submitted
- Check if submitted username and password exists in the database
- If second condition true, then create session
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报