Hello, the site I am developing relies on information in a cookie and is now easily readable by the user. Is there a way to encrypt or scramble the contents of the cookie? There is no login info in the cookie simply session related info. Thanks!
It is likely that some password info will be stored in the cookie in the near future so I am preparing for it.
This is what you should use PHP sessions for. You don't even have to worry about managing your cookies, then...
That's bad design There are better ways of doing it, such as generating a hash based on user data fro each session.