vote up 1 vote down star

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. :)

flag
In which aspects? – Havenard Aug 28 at 15:42
2  
Try this question stackoverflow.com/questions/328/… – Paul Dixon Aug 28 at 15:44
Ah, thanks Paul. That's a good thread. Someone can close this thread. I've got what I've wanted. – Indranil Aug 28 at 15:47

2 Answers

vote up 1 vote down

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?

link|flag
Basically, I'm going to develop a web application and want to know whether there are any recommended rules for handling sessions to make it robust and powerful. I believe the link Paul mentioned (look up) has the answers, though I haven't gone through all the answers. Thank you for your answer too. :) – Indranil Aug 28 at 16:29
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.