Posts Tagged ‘copyright date’

Using PHP To Keep Copyright Footer Year Current

June 6th, 2013, posted in PHP
Share

Using PHP To Keep Copyright Footer Year Current,using php,copyright,current year,year,php coding,copyright-symbolUsing PHP to keep Copyright footer year current

Here’s the start of the Web Development series as part of the new addition to my Blog, including code tutorials and code snippets free for use. This article includes a small snippet of code that you can add to your site to ensure your footer PHP date is always at the current year. I’m sure the eagle-eyed users of the web are still seeing sites stuck on ‘© 2011 Copyright’ – so here’s a few easy ways to overcome it, forever !!

First thing you’ll need is a PHP web page. If your server handles PHP, then use the code below to insert into your website’s footer. Please note this will only work with PHP web pages not static HTML. Read more on PHP here.

Single Year Display

This literally just pulls in the current date using server technology, and is really easy to implement instead of manually typing the year (and forgetting about it).

&copy; <?php echo date("Y"); ?> Copyright.
Gives you: © 2013 Copyright.


Website Start and Current Year

Little longer PHP snippet – in which you set the date your website was launched, and let the PHP automatically keep the current year up to date. See below and example for details : Using PHP To Keep Copyright Footer Year Current,using php,copyright,current year,year,php coding,copyrightdate,copyright date,copyright

&copy; <?php
$copyYear = 2008; // Set your website start date
$curYear = date('Y'); // Keeps the second year updated
echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : '');
?> Copyright.
Gives you: © 2008-2013 Copyright.
Share