Never update the copyright date at the bottom of your php pages again!
Copyright (Your dynamic date).
There are many scripts that accomplish this available out there, but most are javascripts that reflect the users time/date. If your user has their clock set back a year, your copyright date will be set back a year as well. Avoid this and keep your content looking fresh with the following simple code:
<?php
$dateyr = date(‘y’);
echo”©20″.$dateyr.” yourwebsitehere.com”;
?>
That’s it, you’re good to go until 2100. We could easily accommodate for the rollover to 2100, but that’s another line or two of code that most of us will never need…