26Apr/0912
Ajax PHP Flat Calendar – Customizable PHP based event Calendar
Are you looking for php based calendar script for your site?
Here is the download link for this calendar. Hope this will help for you!
Demo: AJAX PHP FLAT CALENDER
- Ajax based PHP Calendar - No page reloading and Flat type calendar.
- Simple in Coding - Used very basic php and ajax script
- Easy to customize for your web based php project.
- Completely free to download and free to modify this script.
- It works with PHP4 and PHP 5
Installation:
- Extract this folder to your server directory.
- Point out the directory(ajaxcalender) in your browser.

April 30th, 2009 - 23:05
is there a demo anywhere?
June 17th, 2009 - 03:42
this source code can’t use in browser IE v.7,why?please help me
September 8th, 2009 - 06:26
yeah.. its dont work in IE…. if any links plz provide
October 9th, 2009 - 02:11
The year is displaying wrong on the calendar header when the month is December for ex: it displaying December 2010 insted of December 2009
October 20th, 2009 - 18:08
I did a quick install and had the same problem. I haven’t looked at why but IE doesn’t like line 21 of the ajax.js file. Simplely remove that line and the first line of the the ajax.js file (HTML comment code) and you can see the calendar in IE.
December 14th, 2009 - 00:54
It is a good looking calendar, but I couldn’t get it to fully work.I got it to work in IE, but as mentioned above, but the year for the month of December is wrong on every year that I looked at. Example, 2009′s December is listed as 2010, not 2009. If you go back to December 2008, it is also showing the year wrong, it shows it as 2009, not 2008.Also on the small change the month buttons (Top left on calendar), I can’t get the path correct for it to change the month. It wont point to the ajaxcalender folder. I keep getting errors.It looks great, I just wish I could get it to work.
January 17th, 2010 - 16:33
Did anyine ever find out how to make this work in IE7? I just spent ten hours cutomizing this to integrate it into a scheduling system and now durring testing found out about the IE7 issue with is 90% of my users
January 19th, 2010 - 05:41
change this line below (calendar.php line:40)[code]$yearCal = date("n/j/Y", mktime(0, 0, 0, $month+1 , date("d")-date("d")+1, date("Y")));[/code]into[code]$yearCal = date("n/j/Y", mktime(0, 0, 0, $month , date("d")-date("d")+1, date("Y")));[/code]
February 9th, 2010 - 20:25
Created a simple fix (not nice, still working on improving this script) for the ‘december error’add this line:// Fix year problem$fixed_year= date(“Y”, mktime(0, 0, 0, $month+1 , date(“d”)-date(“d”), date(“Y”)));And in the top replace $year with $fixed_year
February 9th, 2010 - 20:27
Simple (and also not very nice) way to display the current day:replace://count up the days, untill we’ve done all of them in the monthwhile ( $day_num <= $days_in_month ){echo ” $day_num “;}with://count up the days, untill we’ve done all of them in the monthwhile ( $day_num <= $days_in_month ){if($day_num == date(‘d’, $date) && $month == date(‘m’, $date) && $year == date(‘Y’, $date)){echo “ $day_num today“;}else{echo ” $day_num “;}
June 16th, 2010 - 20:41
Can’t belive that nobody pointed it out yet, but all you need to do to make it work in IE7 is to remove the HTML style comments at the top of “ajax.js”:remove those 2 lines or put // in front of them and it works fine!
June 16th, 2010 - 20:43
Haha, my bad. I obviously can’t write out the html comments and expect them to be visible, but here’s how they look (minus the spaces)