Forum Moderators: open
Somehow the server has to know that you are logged in, either by setting/checking a regular cookie, session cookie/variable, querystring or form , data is passwed betwen client and server to make this decision.
Is this secure?
I am planning on using Session variables over SSL.
Is it any more secure?
Certainly it's possible for someone to intercept a Session ID over an unencrypted connection and then hijack the session.
Using SSL is more secure as it will encrypt the Session ID cookie so an eavesdropper will not be able to determine the value of the cookie. However make sure you desable cookieless sessions. If a user were to use a cookieless session, then the Session ID would be passed unencrypted, even over an SSL connection.