I am writing a mobile detect script to use across multiple projects and I wanted to gage the community to see if you all can help me figure out the best way todo something.

My mobile detect script works great and directs traffic as expected. The part I wanted to get my fellow programmers opinion on is the "override" feature. Allowing people to view the main site if they wish. My questions for you all, is how should I control the override? Should I use sessions to store the override variable or should I use cookies?

My first thought was sessions, but this script will be included across hundreds of locations and I am concerned about interference in the sessions with some of the projects. For instance, if one of the projects destroys the sessions for logging in and out a user, we will lose the "override" setting also.

What are your thoughts?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Use a cookie:

  • you have nothing to store
  • you can scale
  • you can read the cookie before generating any content (by reading HTTP request headers)

I should have recommand LocalStorage too, but it's just for the fun, cookies are good enough.

link|improve this answer
feedback

I advice you to use cookies, even if the user is changing of device / clean cookies, programmatically, cookies is the must for your problem

link|improve this answer
Thanks for chiming in. – ATLChris Jan 11 at 16:34
feedback

I would just use a cookie, I think session management is overkill for this requirement.

link|improve this answer
Thanks for the comment. – ATLChris Jan 11 at 16:33
feedback

Cookies. Because the option is device specific.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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