If you like your copyright information at the bottom of your website to update itself, do not hard code the date in to the page, use PHP to do it for you.
<?php>
echo '©'.date('Y');
?>
That should be more than accurate, but you could always add in the month if you want as well:
<?php>
echo '©'.date('F Y');
?>
Hope this helps...
No comments:
Post a Comment