Forum Moderators: open
Header("Last-Modified: "
. gmdate("D, d M Y H:i:s",time())
. " GMT");
This will send an HTTP header (Not to be confused with a META HTTP-EQUIV tag) telling the client when the last time the content was updated.
The example above uses the "time()" function to figure out the time. You should not use the example above without changing that. You should change "time()" to a timestamp that is the best representation for when the content was last updated.
IE for a forums site you could use message times.
daisho