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 |
Tell me how can we check the value of a given variable is alphanumeric?
How do you register one session ?
How do I find out the number of parameters passed into function9?
How to find length of an array in php ?
What is the difference between mysqli_fetch_object() and mysqli_fetch_array()?
Can php variables have numbers?
How to open standard output as a file handle?
Write logic to print Floyd's triangle in PHP?
How can we submit a form without a submit button?
Explain mysql_errno()?
how can refresh current page automatically, without press any button and anchor tag.
Can you specify the "new line" character in single-quoted strings?