MyBB Community Forums

Full Version: add popup in my forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
the time limit it ll really impossible without creating MySQL tables the above code is perfect and working so you might use this instead of the long SQL based script.
Thanks Rep added
(2015-12-26, 03:28 PM)Dark-Power-Invader Wrote: [ -> ]the time limit it ll really impossible without creating MySQL tables the above code is perfect and working so you might use this instead of the long SQL based script.

I believe It can be done with cookies. Set a cookie when visited then check it.

setcookie("visitedbefore", "yes", time() + (60*60*24));

if( isset( $_COOKIE['visitedbefore']  ) ) 
{ 
     //do nothing
} 
else 
{ 
     //popup in action
} 
how can i open popup background..
i mean i stay on currunt page and popup open background of my page
how can i open popup background..
i mean i stay on currunt page and popup open background of my page
You want to open a popup of your current site then your current site get redirected to somewhere else?
not dear i want to stay my currunt site and popup open background
Pages: 1 2