Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-01-2009, 03:21 PM
enzet enzet is offline
Junior Member
 
Join Date: Feb 2009
Posts: 3
Default code for reverse counter to the website located in my hosting

Looking for timer code - how much time has elapsed since a given date. Will be nice if anybody shows such code, I think to implement it to the website located in my hosting.
Reply With Quote
  #2  
Old 10-01-2009, 03:41 PM
krotal krotal is offline
Junior Member
 
Join Date: Jan 2009
Posts: 4
Default Re: code for reverse counter to the website located in my hosting

I will disappoint you if expect a JavaScript code. My code is written on PHP and is a very simple. Here's how it looks:
PHP Code:
<?php
// Enter the date from which the timer will start.
$start "October 1, 2008";
$now strtotime ("now");
$then strtotime ("$start");
$difference $now $then ;
$num $difference/86400;
$days intval($num);
$num2 = ($num $days)*24;
$hours intval($num2);
$num3 = ($num2 $hours)*60;
$mins intval($num3);
$num4 = ($num3 $mins)*60;
$secs intval($num4);
?>
<div>
<? echo $days ?> days,
<? echo $hours ?> hours,
<? echo $mins ?> minutes and
<? echo $secs ?> seconds
</div>
Reply With Quote
  #3  
Old 10-02-2009, 03:56 AM
carlobee carlobee is offline
Senior Member
 
Join Date: Jul 2009
Posts: 163
Default Re: code for reverse counter to the website located in my hosting

i use PHP so this would help. thanks!

Reply With Quote
Reply

Tags
code, counter, hosting, located, reverse, website

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 12:16 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.