[FIXED] Page copyright at Bolton of pages
Hello, I have noticed that all of the pages in winworldpc.com have Copyright 2003-2012, and not 2014. Has anyone updated the pages recently?
This discussion has been closed.
Comments
PS. Your signature is way too big.
<?php function auto_copyright($year = 'auto'){ ?> <?php if(intval($year) == 'auto'){ $year = date('Y'); } ?> <?php if(intval($year) == date('Y')){ echo intval($year); } ?> <?php if(intval($year) < date('Y')){ echo intval($year) . ' - ' . date('Y'); } ?> <?php if(intval($year) > date('Y')){ echo date('Y'); } ?> <?php } ?> <?php auto_copyright(); // 2011?> <?php auto_copyright('2010'); // 2010 - 2011 ?>