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
What script is this?
Collapse
X
-
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;
...
} ?> -
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

AIM: GrouchyGfy
Comment