include "php/core.php"; // define (WFB, 1); $navTitle = "Meet the creators"; include "php/header.php"; include "php/nav.php"; ?>
(Want to know why this page sometimes changes when you reload it?) if (time() % 2 == 1) { include "crew/doug.php"; include "crew/kat.php"; } else { include "crew/kat.php"; include "crew/doug.php"; } ?>* So you wanted to know why this page sometimes looks different when you reload it? Well, the answer's simple: we didn't want to give one person top billing over the other, so the dynamic code that builds this page puts Doug first during odd-numbered seconds, and Katrin first during even-numbered seconds. It'll all even out (or odd out, maybe) in the wash. |