Reputation: 79686
if the user has disabled cookies in the browser, do sessions work? cause i know there is a session cookie in the client when i create sessions.
Upvotes: 3
Views: 1555
Reputation: 42018
The session id can be appended to the URL, so, yes, they can.
Check out here
Edit to answer additional question
Cookies are the preferred method if you can help it. You should read the Wikipedia article to get a better understanding. From the article if you don't read it:
Transferring session identifiers as HTTP cookies is more secure
Upvotes: 8