Forum Moderators: coopster
Is this complicated to perform in PHP?
Bernard Marx, in the Javascript forum said I might need advice on headers,and that I should look at "the issue of caching downstream from your server."
Could anyone clarify?
All comments appreciated,
Webjourneyman
<?php
$weekday = date("z");
if ($weekday = 1) {
@include "page1.html";}
if ($weekday = 2) {
@include "page2.html";}
?>
and continue to assign a page for all 365 days of the year.