Re: [PHP] Getting the day if given a date

2002-07-23 Thread Jason Stechschulte
On Tue, Jul 23, 2002 at 04:24:37PM -0800, Cirkit Braker wrote: Is there any way to get the day of the week given a date. Check out the date() function. -- Jason Stechschulte [EMAIL PROTECTED] http://www.ypisco.com -- Campus sidewalks never exist as the straightest line between two points.

Re: [PHP] Getting the day if given a date

2002-07-23 Thread Reuben D. Budiardja
You can use the one or the combination of: date(); mktime(); strtotime(); eg: echo date(l, strtotime(22 July 2003)); Check the php online doc for explanation of each function. Rdb On Tue, 2002-07-23 at 20:24, Cirkit Braker wrote: Is there any way to get the day of the week given a date.