Tuesday, March 26, 2013

Seconds to days, hours, minutes in PHP


function sectotime($sec)
{
$d = str_pad(floor($sec/86400),2,0,STR_PAD_LEFT);
$h = str_pad(floor(($sec%86400)/3600),2,STR_PAD_LEFT);
$m =  str_pad(floor(($sec%86400)%3600/60),2,0,STR_PAD_LEFT);
return $d.':'.$h.':'.$m;
}

sectotime(90000);

Bind Some Event to Element and trigger that function when click the element

Scenario: Suppose if we used same click event function in various web pages. if you want do some logic some page button for that need to re...