RE: Re[2]: [PHP-WIN] Convert time

2004-02-16 Thread Svensson, B.A.T. (HKG)
>> Jesus "$min = $sec % 60 60;" should be "$sec = $sec % 60;" > Maybe $sec = min % 60 ;) ? No it should not be, think again why. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP-WIN] Convert time

2004-02-16 Thread re_action
Hello B.A.T., Monday, February 16, 2004, 8:01:30 PM, you wrote: SBATH> On Mon, 2004-02-16 at 17:46, Svensson, B.A.T. (HKG) wrote: >> Example: >> >> $min = (int)($sec/60); >> $min = $sec % 60; >> SBATH> Jesus "$min = $sec % 60 60;" should be "$sec = $sec % 60;" SBATH> I'll have a lo