What is the best & most secure way you've handled sessions in a PHP application? I want to know the best, most robust and secure method there is. :)
|
|
|||||||||
|
|
|
That would depend on your environment. If your using a shared host, it maybe possible for others customers hosted on the same box to access you session data. If that's the case, it might be safer to store it in a database. But every server is different. Can you elaborate on your setup, and what your trying to protect against? |
||
|
|
|
Your session data will be pretty safe. If you want to make it even safer, encrypt it. Beyond that, you'll have to be more explicit about what you desire. |
||
|
|
