JordanTBH Knowledgebase / Browse the free Knowledgebase provided by JordanTBH Technologies.
Fancy displaying the current year and avoid having to update your copyright every year? It's really simple.
<?php echo date("Y"); ?>
<?= date('Y') ?> (This requires PHP 5.4+)
© <?php echo date("Y"); ?> - All rights reserved.
strftime("%Y");
© <?php $copyYear = 2013; $curYear = date('Y'); echo $copyYear . (($copyYear != $curYear) ? '-' . $curYear : ''); ?> My Company.
View the JavaScript method