InterviewSolution
| 1. |
What Are The Options To Transfer Session Ids? |
|
Answer» Once a new session is created, its session ID MUST be transferred to the CLIENT browser and included in the next client request, so that the PHP engine can find the same session created by the same visitor. The PHP engine has two options to transfer the session ID to the client browser:
The PHP engine is configured to use URL parameters for transferring session IDs by DEFAULT. Once a new session is created, its session ID must be transferred to the client browser and included in the next client request, so that the PHP engine can find the same session created by the same visitor. The PHP engine has two options to transfer the session ID to the client browser: The PHP engine is configured to use URL parameters for transferring session IDs by default. |
|