What script is this?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • horvy
    Confirmed User
    • Jan 2007
    • 811

    #1

    What script is this?

    I was always wondering how TGP's rotate the images of their days, so that if its tuesday (lets say) then the image they made of their Tuesday text shows up instead of "todays galleries". Like at bunnyteens.com - thanks for the help
    I like Boobs.
  • GrouchyAdmin
    Now choke yourself!
    • Apr 2006
    • 12085

    #2
    Probably just a crontab. It's trivial to do in any scripting language.

    <?php
    switch (date("n")) {
    case 1:
    @symlink("monday.gif", "today.gif");
    break;
    case 2:
    @symlink("tuesday.gif", "today.gif");
    break;
    ...
    } ?>

    Comment

    • GrouchyAdmin
      Now choke yourself!
      • Apr 2006
      • 12085

      #3
      Probably just a crontab. It's trivial to do in any scripting language.

      <?php
      switch (date("n")) {
      case 1:
      @symlink("monday.gif", "today.gif");
      break;
      case 2:
      @symlink("tuesday.gif", "today.gif");
      break;
      ...
      } ?>

      Comment

      Working...