Re: Hospital Time
For the newbies:
This should make your JAIL time display as X days, X hours, X mins
In jail.php find:
while($r=mysql_fetch_array($q))
{
Add below:
$time=$r['jail'];
$t4=floor($time/60/24);
$t1=floor($time/60) % 24;
$t2=$time % 60;
if($t2 < 10) { $t3="0".$t2; } else { $t3=$t2; }
if($t4) { $t5="$t4 days,"; } else { $t5=""; }
if($t1) { $t1="$t1 hours,"; } else { $t1=""; }
if($t2 == 1) { $t2="< 1 min"; } else { $t2="$t2 mins"; }
Replace:
{$r['jail']} minutes
with:
$t5 $t1 $t2