• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC How to create popup window with cookies?

Jennyx

New Member
Joined
Aug 27, 2017
Messages
12
Solutions
1
Reaction score
0
Hello!

I need advice :)

I would like to create a popup window on my site like the brazilian OTS has
(such as aurera-global.com or aurera-global.com
BUT
I tried to create that with cookies (cuz all time player reflesh site, it appears and this is annoying) --> without succes :mad:.
The second idea was to make landing page like archlightonline.com which is appear only if u visit site first time. I tried do that with htacces (redirect first time to mysite/first) --> without succes :mad:.

Maybe u have any experience with that? I have reworked Gesior acc but feel free to share any infos even if u have other acc.
Thank-You.jpg
 
if(isset($_COOKIE['popup'])){
if($_COOKIE['popup']=="display"){
you can display it for a test to check which cookie are using.
} else {
setcookie('popup', 'display', (time() + (3 * 24 * 3600)));
WRITE HERE THE POPUP HTML
};
 
Back
Top