Monthly Popup/under

Discussion in 'Programming' started by hitmanuk2k, Nov 7, 2006.

  1. #1
    I want to have a bit of code I can whack on my site, which will make a popup window appear once every X days (30 in my case). I have seen sites which show you a popup once every visit, once every 24 hours... but I don't know how they do it.
     
    hitmanuk2k, Nov 7, 2006 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    You could do something like this.
    
    <?php
    
    if (date('j') == 1)
    {
        echo '<script type="text/javascript">
                <!--
                   window.open(\'something.html\', \'window\', \'\');
                //-->
               </script>';
    }
    
    ?>
    
    Code (markup):
    This would show a pop up every first day of a month.
     
    nico_swd, Nov 7, 2006 IP
  3. hitmanuk2k

    hitmanuk2k Peon

    Messages:
    530
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Wouldn't that then show up repeatably all of that day though?
     
    hitmanuk2k, Nov 8, 2006 IP
  4. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #4
    Yeah. What do you want? Show it only once this day for each visitor?
     
    nico_swd, Nov 8, 2006 IP
  5. mikkom

    mikkom Active Member

    Messages:
    266
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #5
    They use cookies. Set a cookie that will expire in 30 days and check if it exists or store the current date to cookie and check if 30 days have elapsed from the date stored to that cookie.
     
    mikkom, Nov 8, 2006 IP
  6. hitmanuk2k

    hitmanuk2k Peon

    Messages:
    530
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Is setting up a cookie easy to do? I am not really familiar with any of this coding business. Do you have a tutorial?
     
    hitmanuk2k, Nov 16, 2006 IP
  7. hitmanuk2k

    hitmanuk2k Peon

    Messages:
    530
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Help please :(
     
    hitmanuk2k, Nov 22, 2006 IP
  8. Quozt

    Quozt Peon

    Messages:
    216
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #8
    talk to me when i get back from france and ill code you something
     
    Quozt, Nov 25, 2006 IP