<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ajax PHP Flat Calendar &#8211; Customizable PHP based event Calendar</title>
	<atom:link href="http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/</link>
	<description>Tips, Scripts and More...</description>
	<lastBuildDate>Wed, 07 Sep 2011 10:35:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Christoffer</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-42</link>
		<dc:creator>Christoffer</dc:creator>
		<pubDate>Thu, 17 Jun 2010 04:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-42</guid>
		<description>Haha, my bad. I obviously can&#039;t write out the html comments and expect them to be visible, but here&#039;s how they look (minus the spaces)</description>
		<content:encoded><![CDATA[<p>Haha, my bad. I obviously can&#8217;t write out the html comments and expect them to be visible, but here&#8217;s how they look (minus the spaces)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoffer</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-41</link>
		<dc:creator>Christoffer</dc:creator>
		<pubDate>Thu, 17 Jun 2010 04:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-41</guid>
		<description>Can&#039;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 &quot;ajax.js&quot;:remove those 2 lines or put // in front of them and it works fine! :)</description>
		<content:encoded><![CDATA[<p>Can&#8217;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 &#8220;ajax.js&#8221;:remove those 2 lines or put // in front of them and it works fine! <img src='http://www.pacecode.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-40</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Wed, 10 Feb 2010 00:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-40</guid>
		<description>Simple (and also not very nice) way to display the current day:replace://count up the days, untill we&#039;ve done all of them in the monthwhile ( $day_num &lt;= $days_in_month ){echo &quot; $day_num &quot;;}with://count up the days, untill we&#039;ve done all of them in the monthwhile ( $day_num &lt;= $days_in_month ){if($day_num == date(&#039;d&#039;, $date) &amp;&amp; $month == date(&#039;m&#039;, $date) &amp;&amp; $year == date(&#039;Y&#039;, $date)){echo &quot;&lt;strong&gt; $day_num today&lt;/strong&gt;&quot;;}else{echo &quot; $day_num &quot;;}</description>
		<content:encoded><![CDATA[<p>Simple (and also not very nice) way to display the current day:replace://count up the days, untill we&#8217;ve done all of them in the monthwhile ( $day_num &lt;= $days_in_month ){echo &#8221; $day_num &#8220;;}with://count up the days, untill we&#8217;ve done all of them in the monthwhile ( $day_num &lt;= $days_in_month ){if($day_num == date(&#8216;d&#8217;, $date) &amp;&amp; $month == date(&#8216;m&#8217;, $date) &amp;&amp; $year == date(&#8216;Y&#8217;, $date)){echo &#8220;<strong> $day_num today</strong>&#8220;;}else{echo &#8221; $day_num &#8220;;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-39</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Wed, 10 Feb 2010 00:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-39</guid>
		<description>Created a simple fix (not nice, still working on improving this script) for the &#039;december error&#039;add this line:// Fix year problem$fixed_year= date(&quot;Y&quot;, mktime(0, 0, 0, $month+1 , date(&quot;d&quot;)-date(&quot;d&quot;), date(&quot;Y&quot;)));And in the top replace $year with $fixed_year</description>
		<content:encoded><![CDATA[<p>Created a simple fix (not nice, still working on improving this script) for the &#8216;december error&#8217;add this line:// Fix year problem$fixed_year= date(&#8220;Y&#8221;, mktime(0, 0, 0, $month+1 , date(&#8220;d&#8221;)-date(&#8220;d&#8221;), date(&#8220;Y&#8221;)));And in the top replace $year with $fixed_year</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elp</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-38</link>
		<dc:creator>elp</dc:creator>
		<pubDate>Tue, 19 Jan 2010 09:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-38</guid>
		<description>change this line below (calendar.php  line:40)[code]$yearCal = date(&quot;n/j/Y&quot;, mktime(0, 0, 0, $month+1 , date(&quot;d&quot;)-date(&quot;d&quot;)+1, date(&quot;Y&quot;)));[/code]into[code]$yearCal = date(&quot;n/j/Y&quot;, mktime(0, 0, 0, $month , date(&quot;d&quot;)-date(&quot;d&quot;)+1, date(&quot;Y&quot;)));[/code]</description>
		<content:encoded><![CDATA[<p>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]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-37</link>
		<dc:creator>Tyler</dc:creator>
		<pubDate>Sun, 17 Jan 2010 20:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-37</guid>
		<description>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 :(</description>
		<content:encoded><![CDATA[<p>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 <img src='http://www.pacecode.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-36</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Mon, 14 Dec 2009 04:54:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-36</guid>
		<description>It is a good looking calendar, but I couldn&#039;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&#039;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&#039;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.</description>
		<content:encoded><![CDATA[<p>It is a good looking calendar, but I couldn&#8217;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&#8242;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&#8217;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.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Dav</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-35</link>
		<dc:creator>The Dav</dc:creator>
		<pubDate>Tue, 20 Oct 2009 22:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-35</guid>
		<description>I did a quick install and had the same problem.  I haven&#039;t looked at why but IE doesn&#039;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.</description>
		<content:encoded><![CDATA[<p>I did a quick install and had the same problem.  I haven&#8217;t looked at why but IE doesn&#8217;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.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srihari</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-34</link>
		<dc:creator>srihari</dc:creator>
		<pubDate>Fri, 09 Oct 2009 06:11:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-34</guid>
		<description>The year is displaying wrong on the calendar header when the month is December for ex: it displaying December 2010 insted of December 2009</description>
		<content:encoded><![CDATA[<p>The year is displaying wrong on the calendar header when the month is December for ex: it displaying December 2010 insted of December 2009</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiran</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/#comment-33</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Tue, 08 Sep 2009 10:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-33</guid>
		<description>yeah.. its dont work in IE.... if any links plz provide</description>
		<content:encoded><![CDATA[<p>yeah.. its dont work in IE&#8230;. if any links plz provide</p>
]]></content:encoded>
	</item>
</channel>
</rss>

