![]() |
How do I bypass a splash page if someone has already seen it.
HI there, we have a splash page set up on http://www.sealfit.com. I would like a visitor to see the splash page a maximum of 3 times. If they fail to sign up for the offer, and click "No Thanks, Take me to the Homepage" 3 times, I would like them to bypass the splash page from then on.
I guess I need to set a cookie or something? Can someone outline the basic steps I need to take to accomplish this? Thank you, Rich V |
Cookie would be the best solution. Keep track of the number of times the splash screen has been viewed, once the value is "equal to or greater than" 3, stop showing the splash screen.
|
How do I do this?
Can you point me to a resource or help me set this cookie? I don't know how to set a cookie then forward to an alternate url based on the cookie information.
I ca't easily find an explanantion searhing the web so far. |
Here is a pretty good tutorial on cookies in JavaScript. Read, set, delete, etc.
Basically, I guess the index page would contain the splash screen. Before the splash screen displays, check for the EXISTENCE of the cookie - if there isn't one, write the cookie (name it "splash") and give it a value of 1, then display the splash. If there IS a cookie, check the value - if it's less than 3, display the splash and add 1 to the value of the splash cookie. If it's greater than 3, don't display the splash (I guess a redirect before the splash displays would prevent it from showing.) A simple "IF" conditional can determine whether to show the splash page or redirect to another URL. |
Note that this is a situation where you need the JavaScript attached in the head of the page rather than at the bottom of the body where most JavaScript goes.
Basically the processing would be 1. set count to zero 2. read the cookie if it exists replace the count with the value from the cookie 3. add 1 to the count 4. save the cookie 5. If the count is greater than 3 then redirect |
Another question.
Why won't you use PHP instead and use sessions? What if someone deactivated Javascript? |
Labrar is pointing you in the right direction. This should be done server side and forget using javascript for this situation. It's not required at all.
Also, do you mean 3 times per session or 3 times over multiple sessions. If you mean 3 times per session then you don't even need cookies (which labrar alluded to), which can also be turned of by the user and so your counter won't work. If you forget using javascript and do this server side, you can use both a session variable and cookies so that at least you will have a session counter that works in all browsers and if cookies are enabled in the browser, the counter will work over multiple sessions even if javascript is not available. If you can do something both server and client side, it's always better to do it server side which means it will work all the time and so not have to worry about users whose browsers have javascript unavailable for some reason. Finally, the code to read and write cookies using PHP is much less than the code required using jabascript. |
Just my opinion but I would stick with JavaScript :). If someone disables JavaScript then they will encounter many other issues more significant than having to close a splash screen (assuming they still can..). Besides, the page in question already uses a great deal of JavaScript.
Quote:
I agree that coding cookies is easier in PHP, but not enough to make me chose to use PHP in preference to JS. |
Quote:
By doing this using a server side session you will have a counter that works at least for the session in all cases without needing cookies or javascript. If you limit yourself to javascript, there will be occassions where you won't have a working counter at all. So I guess it boils down to how critical it is for the op to have a working counter and in what situations for their splash screen. |
Quote:
|
Of course, if the user disables cookies, then the PHP developer must enable cookieless-sessions (they are enabled by default in recent versions of PHP) and, as the PHP manual warns, cookieless sessions are subject to attacks.
Quote:
|
Quote:
|
Ummm....you wrote
Code:
By doing this using a server side session you will have a counter that works at least for the session in all cases without needing cookies or javascript.Anyway, not disagreeing about whether cookieless sessions implies a problem in all cases. Just noting that it *could*. Clearly not applicable to the simple scenario that is the subject of this thread. |
Quote:
You don't need cooikies or javascript if you want a counter just for the browser session. |
The OP wanted the splash screen to be shown 3 times only (over multiple sessions). He asked his question in the Javascript forum, and Javascript can very easily do this using a cookie. It is silly to raise the question of Javascript or cookies being disabled. In that case the user just sees the splash screen each time. Note that many people clear out their cookies at frequent intervals, so the cookie that works initially may be deleted hours/days later by the user.
|
| All times are GMT +1. The time now is 12:41 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.