Auto changing copyright year
Posted by Pavan Chander | Filed under Asides, Web
While working with the PHP, I managed to play with a function to auto change the copyright period.
So the site will automatically adjust the copyright on Jan 1 to say
Pavan Chander © 2007 - 2008
<?php
$my_date = the_date('Y', '', '', FALSE);
if (2007 != $my_date)
{ print ("- $my_date");}
?>
Tags: php