If the date is coming from a database, there might be a
function/format already for that...

And http://php.net/date may also have a format specifier for Quarter.

If not, try this:

$quarter = ((int) ($month / 4)) + 1;

On Sat, June 30, 2007 10:14 am, revDAVE wrote:
> I have segmented a year into four quarters (3 months each)
>
> nowdate = the month of the chosen date (ex: 5-30-07 = month 5)
>
> Q: What is the best way to calculate which quarter  (1-2-3 or 4) the
> chosen
> date falls on?
>
> Result - Ex: 5-30-07 = month 5 and should fall in quarter 2
>
>
>
> --
> Thanks - RevDave
> [EMAIL PROTECTED]
> [db-lists]
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

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

Reply via email to