1.Where are the sessions storing ?
2.What are the contents of a session file ?
3.If the server is loaded with too many session files there
is a possibility of server crash. How can we solve this
issue?
4. How does php server identify that the particular session
belongs to particular user ? For ex: If two users A and B
logged from different machine, separate session files (say
1 and 2) will be created in the server. But how the php
knows that 1 belongs to A and 2 belongs to B ?
Answer Posted / binoyav
1. In PHP server under session_save_path
2. The file contains the session name and data type of the
value, length and session value separated with | and :
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to download and install php for windows?
How can you declare a constant variable in php?
What are the four scalar types of php?
What is the phpstorm?
How variables are passed through arguments?
How do you check if a variable has not been set in php?
How do I end a php session?
Explain how can we execute a php script using command line?
What is url encoding and decoding in php?
What does the unset() function means?
Why does php start with variables?
What is inheritance in php? How many types of inheritance supports php?
Are there regular expressions in php?
Tell me what does the php error 'parse error in php - unexpected t_variable at line x' means?
What is composer phar?