Insert current year using PHP
Ever remembered in June that you forgot to update the copyright notice in your footer for the new year? Want an easy way to always have the current year? Try this little snippet of PHP code. PLAIN TEXT PHP: <?php echo date("Y"); ?> This will output the current year in 4 digits. Let's say you [...]