I haven´t tried this yet, so maybe the answer is in there , but I thought of something...
If I use the code
><?php
$week = (date("W"));
include("($_SERVER['DOCUMENT_ROOT']."/$week.html");
?>
How does the server know when its time to show a new "made in advance" htmlpage?
As I understand it, I either have to upload a week.html every monday or change $week.html to $week1.html $week2.html and so on every week.
Am I correct or wrong?