March 12, 2007, 10:12:17 PM
If you need to have the current year always up-to-date on your webpage, this little bit of PHP code will do it for you.
<?php
echo date('Y');
?>
I use this in the footer of most of my websites like this
Content copyright 2002-<?php echo date('Y'); ?>

Logged