0
WHAT ARE SESSIONS AND SESSION VARIABLES
In context of php/asp.net..diffrence and concept of session and session variables.
1 Resposta
0
//A session is a way to store information (in variables) to be used across multiple pages.
Unlike a cookie, the information is not stored on the users computer.
//Session variable store user information to be used across multiple pages (e.g. username, favorite color, etc).
https://www.sololearn.com/learn/PHP/1842/