RE: [PHP] finding certain dates in the future (again)

2004-03-31 Thread Harish
Hi try mktime you can get it there -Harish -Original Message- From: Andy B [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 4:59 PM To: [EMAIL PROTECTED] Subject: [PHP] finding certain dates in the future (again) Hi... Is there any way to find say the third monday of the

Re: [PHP] finding certain dates in the future (again)

2004-03-31 Thread Jason Wong
On Wednesday 31 March 2004 19:28, Andy B wrote: Is there any way to find say the third monday of the month (all months of the year) for any year (up to 2038) and show them in a combo box as exact dates? strtotime(third monday, mktime(0, 0, 0, $month, 1, $year)); I'm sure you can work out the