[PHP] calculating US holidays

2002-04-15 Thread Tom Beidler
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 code that can do that? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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
] calculating US holidays 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 code that can do that? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

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
, April 15, 2002 2:17 PM Subject: [PHP] calculating US holidays 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 code that can do that? -- PHP General Mailing List (http

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