Since I am building a simple game I need users to stay loged in even when they leave. For security reasons it would be best to store cookies on my own server so the users can't change them. Is this possible?
I store everything in session variables, if the user is in fight, if the user is doing something time consuming etc. They can't access other points on my site until they finish with the previous task! That is why I need this information stored in my session cookies!
If this is not possible I guess I will just have to store such things in my database but that would be a lot of extra database manipulation on my hands...
Also can I even save such data in a cookie so that when user leaves and comes back, the session will still have the variables set to previous data?