On Thu, August 18, 2005 12:56 am, Norbert Wenzel wrote:
> Excuse me, I know my question is not PHP specific, but I hope there
> are
> some logical and mathematical talents in here, since I've always been
> fighting with maths. ;-)
>
> I have to provide a textfield, where workers enter their time they
> worked on a certain subject. The smallest degree should be 15 minutes,
> but the workers may enter every time, such as 357 or maybe 1:38.

You're on your own converting 1:38 or 357 into minutes, but:

$minutes = 357;
$minutes = 15 * round($minutes / 15);
echo "minutes: $minutes\n";

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to