Just wanted to show:
Well, I wanted to learn something about Modulus so here it isPHP Code:<?php
$Ms = 133992;
$Formula2 = ( $Ms % ( ( (1000*60*60) / (1000*60) ) ) );
$Formula = ( ( ( $Ms % ( 1000*60*60 ) ) % ( 1000*60 ) ) / 1000 );
echo $Ms .' ms:';
echo '<br />Millisec to time: '. Floor( $Formula2 ) .' Minutes, '. Floor( $Formula ) .' Seconds';
?>![]()



Reply With Quote![[PHP] Modulus](http://ragezone.com/hyper728.png)

