I have a member area page example http://mywebsite.com/private/members.php
and there is a gallery page which I place the link on the members.php which is http://mywebsite.com/private/premium.php
what I want to make is that when they already logged in if they visit the first time either they go directly to http://mywebsite.com/private/premium.php or clicked the premium.php from members.php page they will be redirect to this page first example http://mywebsite.com/private/announcement.php then they can click on the link to continue after they read my announcement first
I know this will be so annoying and complicate (maybe) but I just want them to see my announcement first before get to the premium.php page.
Thanks
You can simply add a javascript (jquery for instance) popup with overlay on your /premium.php on load. I reckon would be a better way. Alternatevely you can send them to announcment page from /premium.php using header.
On announcement page when they click next set a session variable. (Put next button in a form).
On premium page check for that session variable. If it’s not set – header redirects them to announcement page, otherwise they stay on /premium.php
Still think simple modular poup would be better way to go about your announcement thingy.