Next Nov 2 Previous
Private sessions
How can you prevent other users from browsing through your session data when you are on a shared hosting environment.
A: No need to, session data can't be read by other users
B: Just enable safe_mode
C: You'll need to write your own session handler and register it with session_set_save_handler()
D: By setting session.save_path
ain your php.ini
Choose the best answer.