Adding Auto Date Updating
You have a website, you want to add a copyright date that you can set and forget?
Rather than add something like Content copyright © 1998 - 2015 which has to be manually changed each year, simply add to your template code the following line:
Content copyright © 1998 - <?PHP echo date("Y"); ?>
Providing your Web Space includes the use of PHP, the above will display Content copyright © 1998 - Y where "Y" is the current year.