i need some one who knows PHP i have 2 codes for a count down clock and a table to go on my website. i need them placed on there. please pm me with a price. contact me: that is also my windows messenger account -
I'd recommend javascript for what you need, rather than PHP, as it updates live on clientside and doesn't use unneeded resources on your server. However, if you're planning to do a countdown and have something displayed every different day (ie. a picture with the day count), then you should use php.
<script language="JavaScript"> TargetDate = "12/31/2020 5:00 AM"; // The date goes here. BackColor = "palegreen"; // The background colour of the timer. ForeColor = "navy"; // The text colour of the timer. CountActive = true; // If the timer is active (true/false) CountStepper = -1; // How many seconds to deduct from the time. LeadingZero = true; // Show leading zeros on times. DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds."; // Display format. FinishMessage = "It is finally here!"; // The message that will show up when the countdown is done. </script> <script language="JavaScript" src="http://scripts.hashemian.com/js/countdown.js"></script> Code (markup): Here is a javascript countdown linked from: http://www.hashemian.com/tools/javascript-countdown.htm I added comments to each of the variables so it would be easier to understand how it works.