Description of PHP Calendar Menu :
A simple calendar menu which displays a calendar month and allows you to click on a day to fill in a form. PHP has some great date function capabilities such as built in support for textual Months and Days. Plus it can even display the appropiate suffix on a day. ('st', 'nd' 'rd', 'th' in 1st, 2nd, 3rd 4th). View the source code and the PHP documentation to see how these functions are used. / The concept behind generating the month is straightforward. Grab today's date, from that get the month and year and create a new date of the first of the month. From this date you can figure out which day of the week it falls on. /