It's not 2034 but 2038 after thinking about it and the answer would be an ulta uber geek answer LOL!
It's the Unix Millennium Bug, Y2K38 or Y2.038K.
See more info at: wikipedia.org
Enjoy ..... :cool2:
<?php
function copyright()
{
$startYear = '2001'; # set this for the start year of the copyright, the current year will update automatically
$thisYear = date('Y');
if($startYear == $thisYear)
{
return $startYear;
}
else
{
return $startYear.' - '.$thisYear;
}
}
echo 'Copyright ' . copyright() . ' YOUR SITE NAME<br />' . PHP_EOL;
?>
Here's a version using php. Should work forever. Just move the function to the top or into an include page and paste the copyright code anywhere you want. Maintainance free.