I need some help using time.
I want to be able to have a count down using this format
days:hours:mins
The count down works with getting the time that was input into the database.. then it will check agaisnt that time till the count down such as 86400. But I am not to sure how to work it.
I tryed this but with no luck.
$time = time();
$timetill = $info[time] + 86400;
$timeleft = $time-$info[time];
Thanks for your time
- Me :o