Re: [PHP] calculating US holidays

2002-04-15 Thread Erik Price
On Monday, April 15, 2002, at 03:17 PM, Tom Beidler wrote: I need to calculate the date to see if it's a holiday, i.e. is today presidents day No, today is Patriot's Day! Not sure if it's celebrated outside of Massachusetts Erik Erik Price Web Developer Temp Media Lab,

Re: [PHP] calculating US holidays

2002-04-15 Thread Tyler Longren
? $month = date(m); $day = date(d); if ($month == 10 $day == 31) { print It's Halloween!; } ? you could do something similar to that. tyler - Original Message - From: Tom Beidler [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Monday, April 15, 2002 2:17 PM Subject: [PHP]

Re: [PHP] calculating US holidays

2002-04-15 Thread Tom Beidler
Communications Date: Mon, 15 Apr 2002 14:48:15 -0500 To: Tom Beidler [EMAIL PROTECTED], php list [EMAIL PROTECTED] Subject: Re: [PHP] calculating US holidays ? $month = date(m); $day = date(d); if ($month == 10 $day == 31) { print It's Halloween!; } ? you could do something similar

Re: [PHP] calculating US holidays

2002-04-15 Thread Robert Cummings
He wants the third sunday in february which can't be handled by your code :) since the third sunday could fall on any number of days. The following isn't very optimal but will work (not syntax checked either). $i = 1; while( $i++ = 7 ) { // // First we find the first Sunday in February.

Re: [PHP] calculating US holidays

2002-04-15 Thread Steve Cayford
:48:15 -0500 To: Tom Beidler [EMAIL PROTECTED], php list [EMAIL PROTECTED] Subject: Re: [PHP] calculating US holidays ? $month = date(m); $day = date(d); if ($month == 10 $day == 31) { print It's Halloween!; } ? you could do something similar to that. tyler - Original Message

Re: [PHP] calculating US holidays

2002-04-15 Thread heinisch
], php list [EMAIL PROTECTED] Subject: Re: [PHP] calculating US holidays ? $month = date(m); $day = date(d); if ($month == 10 $day == 31) { print It's Halloween!; } ? you could do something similar to that. tyler - Original Message - From: Tom Beidler [EMAIL

Re: [PHP] calculating US holidays OT

2002-04-15 Thread DL Neil
I need to calculate the date to see if it's a holiday, i.e. is today presidents day No, today is Patriot's Day! Not sure if it's celebrated outside of Massachusetts It's celebrated any day there's a SCUD inbound! =dn -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] calculating US holidays

2002-04-15 Thread Tom Rogers
Hi This is one way: echo date(d/m/Y,strtotime(third sunday,strtotime(2/1/2002))); Tom At 05:17 AM 16/04/2002, Tom Beidler wrote: I need to calculate the date to see if it's a holiday, i.e. is today presidents day, which happens to be the third monday of february. Can someone point me to some

Re: [PHP] calculating US holidays

2002-04-15 Thread Tom Rogers
Hi Perhaps that should have been: echo date(d/m/Y,strtotime(third monday,strtotime(2/1/2002))); :-) Tom At 05:17 AM 16/04/2002, Tom Beidler wrote: I need to calculate the date to see if it's a holiday, i.e. is today presidents day, which happens to be the third monday of february. Can someone