Use of Session
Answers were Sorted based on User's Feedback
Answer / tulika sinha
A PHP session variable is used to store information about,
or change settings for a user session. Session variables
hold information about one single user, and are available
to all pages in one application
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / rajaneesh
Session variable helpus to check the user is correct
authentified one when he/she visit each pages
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / lakshmi
session are objects and not text files used to store data
and help servlet to transfer this data to other servlet
invocation so that the WEB SERVER understands that these
requests have come from the same client.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / psharma05
it is used for statemanagement. used for authentication.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sagar_joshi
Session support in PHP consists of a way to preserve
certain data across subsequent accesses. This enables you to
build more customized applications and increase the appeal
of your web site.
A visitor accessing your web site is assigned a unique id,
the so-called session id. This is either stored in a cookie
on the user side or is propagated in the URL.
| Is This Answer Correct ? | 0 Yes | 3 No |
What is php artisan serve?
Is php session id unique?
What is mvc php?
Tell me what are the different types of errors in php?
What is substr in php?
How many types of php are there?
How many escape sequences are recognized in single-quoted strings?
i want to store retrieved data from database into an array list with limit.And display the data from that array list.have any answer for this?
Where is session value stored php?
Explain the importance of the function htmlentities.
how to include a datepicker in a form using php and mysql
How to access a global variable inside a function?