Want to know about Joomla session

Asked By 60 points N/A Posted on -
qa-featured

Hi everyone, I am learning web designing. I am not familiar with Joomla session, can anyone give me some details about it? It will be grateful to me, many thanks!

SHARE
Answered By 0 points N/A #193030

Want to know about Joomla session

qa-featured

 

Session storage is a very important aspect of web applications. In its simplest form, a PHP session allows data to be stored temporarily on the server and accessed throughout a user's time on the site. When that user leaves the site or is inactive for a certain amount of time, the data is destroyed. While anonymous sessions are common, sessions are usually associated with user logins. When a correct username/password combination is entered, a session is created around that user's access information and then read and checked every time that user loads a page. As a developer, you can access this session functionality to enhance your extensions.

One practical illustration is the ever-present shopping cart. When you are using an online store, you will usually choose to add a few items to your cart while you are browsing. You may add items at different times, update quantities, or remove products. Instead of using database tables to temporarily store and access this data, using session data is faster and easier.

Related Questions