Start and current copyright year dates
<?php
// usage: place your start date into $start variable i.e. $start = '2008'
$start = '<<**SelectionInsertionPlaceholder**>>';
echo( ($start < date('Y') ? 'Copyright © ' . $start . ' - ' . date('Y') . ', all rights reserved' : 'Copyright © ' . $start . ', all rights reserved') );
?>
Added to PHP by Patrick Lefevre
Echo Server Year (Useful for Copyright messages)
<?php echo date('Y'); ?>
Added to PHP by Steven Hambleton