Manually updating the copyright year could be annoying to everyone. We need to change the copyright year every year. But there is a solution for this indeed. You can automatically update the copyright year using PHP and also using JavaScript.
These code snippets updates the copyright year automatically. JavaScript code works on any webpages whereas PHP code works only on PHP pages. But both they have their own advantages.
JavaScript Code Snippet
<script type="text/javascript">
now=new Date();
year=now.getFullYear();
</script>© Copyright 2008-<script type="text/javascript">
document.write(year);
</script>
The output will be like this :
Β© Copyright 2008-2009
Note : You should update the starting year for your copyright year.
PHP Code Snippet
© Copyright <?php
$then = 2007;
$now = date(βY');
if ($then == $now)
echo $now;
else
echo "$then - $now"; ?>
You can also try this snipper for simplity of code
© Copyright 2007 - <?php echo date('Y'); ?>
Note : You need to edit $then for setting it to the year your blog launched. The final year is automatically calculated using date() function of PHP.
Nice way to auto update copyright date, thanks.
its quite easy and usefull … Well most blogs have automatic updates of this year…
like theme junkie… thanks pradeep…
this is quite Easy…thanks for the codes..
Now a day people are becoming to lazy.. I dont want to be that much lazy.. but nice thing.. :p π
NIce trick!
I never thought to write a script to update the Copyright year because it`s fun to change it yourself, to think what you have done in a year
nice…one…bro
.-= Dev | Technshare's last blog…<a href="http://www.technshare.com/tips-to-increase-page-rank/">8 Tips to Increase your Google Page Rank</a> =-.
So what would the relevant code be in Thesis?
Same I believe! These codes are common Avinash.. ! π
I think the php coding of date (y) is enough for making the copyright year displayed. isnt it?
Anybody can add a copyright text on the footer of the page or i need to pay something to put a copyright text ?
You don’t need to pay for this… !
It is just a code ! So ..
Nice share buddy. It will help busy bloggers π
Yup, and I’m sure, this will be useful to you ! π
He he he Nice one there. Simple Javascript to do the needy.
DIdn’t get the thought of this until now π
Ha ha.. I thought of making this post.. when I was studying PHP ! π
Prefer using PHP People.
Javascript is not reliable as it runs in client side. Moreover, you can’t put this code in .htm(l) files in most of the servers as far as i know.
So better config the server to hav a common footer that runs in php π
I also prefer PHP code, but if the blogger uses a blog in .blogspot, then he should try only the JS code, since PHP is not supported there ! π
I recently moved from Blogger to WordPress! I will need this script now! Thanks a ton!
If you have any suggestions for a WordPress newbie like me, then feel free to tell me about it!
Glad you are happy with this script buddy ! π
Suggestions ? π Maybe.. redirect your blogger blog to wordpress… that can give you some extra traffic…
Actually, I never though of this before. Thanks for remind me. I’ll take a look =)
Thanks Blinkky ! π
If you need any assistance.. feel free to ask.. !
Well, updating an year is not that annoying, a new year comes once in 365 days π
As time flies.. you may become a busy blogger… then little things like updating years will be an issue ! π
Hmm thats a one good handy trick.
Sushant@webdire.com
Glad it helped you buddy ! π