Many websites include current year and copyright info in the footer. A neat way to stay current is to output the year dynamically.
Instead of this:
echo '2016 © Acme';
You can output the current year dynamically:
echo date('Y').' © Acme';