Sunday, June 23, 2019

How to display copyright in PHP for your website

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.

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).
© <?php echo date("Y"); ?> Copyright.
Gives you: © 2016 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.
© <?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.

No comments:

Post a Comment