Are your counting the days too? Now this is an extremely easy solution to count down to the FIFA world cup 2010 with php or javascript.
Lets see how to do this in two ways.
First we get the exact date from the Official website. In numeric format the date will be 6.11.2010.
It is starting on June 11 2010. WOW!!!
COUNTDOWN WITH PHP
Now we will place the date month and year in the mktime section of the php code below:
<?php $fifa2010 = mktime(0, 0, 0, 6, 11, 2010) ; $now = time () ; $result =($fifa2010-$now) ; $daystoGO =(int) ($result/86400) ; print "World Cup 2010 - $daystoGO days to go!"; ?>
We have written “World Cup 2010 – ” before $daystoGO in the code, you can write some more text or change it as you like.
For php only code just add this code to your wordpress blog sidebar or posts if your blog is php-code enabled, or add this code directly to a page or post or sidebar template. If php is not working for your html only pages then the javascript code can come to your rescue.
COUNTDOWN WITH JAVASCRIPT
If you are not aware of php or it is not working on your html only page, just copy and paste the javascript code below to your page, see how we have added the occasion date in the “target” variable.
You can also add this section to your page before the end tag, to keep the page content clean!
<script language="javascript" type="text/javascript">
today = new Date();
todayE = today.getTime();
target = new Date("11 June, 2010");
targetE = target.getTime();
daystoGO = Math.floor(((targetE - todayE) / (60*60*24)) / 1000);
</script>
And add the following section to the area where you want the countdown output.
World Cup 2010 - <script>document.write(daystoGO);</script> days to go!
RESULT: World Cup 2010 – -607 days to go!
UPDATE Oct 2010: You can add this same code for Durgapuja, Diwali, Christmas, or New Year countdown too!
India Internet Information (Infographics)
India Mobile Phone Infographics 2011
SAKSHAT ~ The $35 Indian Tablet Computer
How to add facebook like-button in tumblr posts with opengraph protocol
February 2012 Calendar Wallpaper
January 2012 Calendar Wallpaper
EyedeaLab’s 7th Birthday
Month of Fun – December 2011 Calendar Wallpaper

Very nice code I enjoyed the read
. Have a nice day!
Joseph @pcsubject.com