<?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,Ideas, Free scripts and more...</description>
	<lastBuildDate>Wed, 09 Jun 2010 16:58:31 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rick</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/comment-page-1/#comment-29</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-29</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 month
while ( $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 month
while ( $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:</p>
<p>replace:</p>
<p>//count up the days, untill we&#8217;ve done all of them in the month<br />
while ( $day_num &lt;= $days_in_month )<br />
{<br />
	echo &#8221; $day_num &#8220;;<br />
}</p>
<p>with:</p>
<p>//count up the days, untill we&#8217;ve done all of them in the month<br />
while ( $day_num &lt;= $days_in_month )<br />
{</p>
<p>if($day_num == date(&#8216;d&#8217;, $date) &amp;&amp; $month == date(&#8216;m&#8217;, $date) &amp;&amp; $year == date(&#8216;Y&#8217;, $date)){<br />
	echo &#8220;<strong> $day_num today</strong>&#8220;;<br />
}else{<br />
	echo &#8221; $day_num &#8220;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/comment-page-1/#comment-28</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-28</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;</p>
<p>add this line:</p>
<p>// Fix year problem<br />
$fixed_year= date(&#8220;Y&#8221;, mktime(0, 0, 0, $month+1 , date(&#8220;d&#8221;)-date(&#8220;d&#8221;), date(&#8220;Y&#8221;)));</p>
<p>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-page-1/#comment-27</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-27</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)<br />
[code]<br />
$yearCal = date("n/j/Y", mktime(0, 0, 0, $month+1 , date("d")-date("d")+1, date("Y")));<br />
[/code]<br />
into<br />
[code]<br />
$yearCal = date("n/j/Y", mktime(0, 0, 0, $month , date("d")-date("d")+1, date("Y")));<br />
[/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-page-1/#comment-26</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-26</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-page-1/#comment-25</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-25</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.</p>
<p>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&#8217;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.</p>
<p>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.</p>
<p>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-page-1/#comment-24</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-24</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-page-1/#comment-23</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-23</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-page-1/#comment-22</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-22</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>
	<item>
		<title>By: banu</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/comment-page-1/#comment-21</link>
		<dc:creator>banu</dc:creator>
		<pubDate>Wed, 17 Jun 2009 07:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-21</guid>
		<description>this source code can’t use in browser IE v.7,why?
please help me</description>
		<content:encoded><![CDATA[<p>this source code can’t use in browser IE v.7,why?<br />
please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.pacecode.com/blog/2009/04/26/ajax-php-calender-event-calendar/comment-page-1/#comment-20</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 01 May 2009 03:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=97#comment-20</guid>
		<description>is there a demo anywhere?</description>
		<content:encoded><![CDATA[<p>is there a demo anywhere?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
