<?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: MySQL Calendar &#8211; V1.2: Multilingual</title>
	<atom:link href="http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/</link>
	<description>A coders playground.</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:04:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: multilingual jobs, multilingual language jobs, multilingual speaking jobs</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-310681</link>
		<dc:creator>multilingual jobs, multilingual language jobs, multilingual speaking jobs</dc:creator>
		<pubDate>Tue, 25 Oct 2011 08:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-310681</guid>
		<description>Hi there, I discovered your web site via Google while looking for a similar topic, your site came up, it seems to be good. I have bookmarked it in my google bookmarks.</description>
		<content:encoded><![CDATA[<p>Hi there, I discovered your web site via Google while looking for a similar topic, your site came up, it seems to be good. I have bookmarked it in my google bookmarks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-236726</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Thu, 12 May 2011 13:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-236726</guid>
		<description>Firstly, thank you for ending my search for a calender script!
As asked my another individual; How would you remove the need to log in. As I am sure you know this script is in most cases going to be embedded in to sites (which would have security already if needed).

Also (more importantly for myself) How can I get today&#039;s &#039;events&#039; listed on a page without having to click on todays date in the calender.

Thanks again.


Rich</description>
		<content:encoded><![CDATA[<p>Firstly, thank you for ending my search for a calender script!<br />
As asked my another individual; How would you remove the need to log in. As I am sure you know this script is in most cases going to be embedded in to sites (which would have security already if needed).</p>
<p>Also (more importantly for myself) How can I get today&#8217;s &#8216;events&#8217; listed on a page without having to click on todays date in the calender.</p>
<p>Thanks again.</p>
<p>Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-192066</link>
		<dc:creator>Barry</dc:creator>
		<pubDate>Wed, 06 Apr 2011 10:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-192066</guid>
		<description>I would like to change the calendar from Mon to Sun to Sun to Sat but instead of graying out the weekend (sat and sun)  I would like to gray out Sunday and Monday. Is this possible?

Thank you</description>
		<content:encoded><![CDATA[<p>I would like to change the calendar from Mon to Sun to Sun to Sat but instead of graying out the weekend (sat and sun)  I would like to gray out Sunday and Monday. Is this possible?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-88742</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Tue, 30 Nov 2010 20:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-88742</guid>
		<description>Hello there... 

I want to know, 
how can I add / upload images in the calendar?

Any ideas... because i don&#039;t get it with the two pages, is it a $_POST or a $_FILES... for the upload of the image....

line 243 of rpc.php

case &#039;addEvent&#039;:
		$day = $_POST[&#039;d&#039;];
		$month = $_POST[&#039;m&#039;];
		$year = $_POST[&#039;y&#039;];
		$body = $_POST[&#039;body&#039;];
		
		$img = $_POST[&#039;img&#039;];
		$file = $_POST[&#039;img&#039;];
		$link = $_POST[&#039;link&#039;];
		
		$timeStamp = mktime(0,0,0, $month, $day, $year);
		$bodyF = addslashes(trim($body));
		
		$uploads_dir = &#039;http://mysite.com/mysqlcal/images&#039;;
		foreach ($_FILES[&#039;img&#039;][&#039;error&#039;] as $key =&gt; $error) {
			if ($error == UPLOAD_ERR_OK) {
				$tmp_name = $_FILES[&#039;img&#039;][&#039;tmp_name&#039;][$key];
				$name = $_FILES[&#039;img&#039;][&quot;name&quot;][$key];
				move_uploaded_file($tmp_name, $uploads_dir.&#039;/&#039;.$name);
			}
		}

		move_uploaded_file($img ,$structure.&#039;/&#039;.$img );
		
		$addEvent = mysql_query(&quot;INSERT INTO event (body, timestamp, img, link) VALUES (&#039;$body&#039;, &#039;$timeStamp&#039;, &#039;$img&#039;, &#039;$link&#039;)&quot;, $conn);

		break;


Can u help me</description>
		<content:encoded><![CDATA[<p>Hello there&#8230; </p>
<p>I want to know,<br />
how can I add / upload images in the calendar?</p>
<p>Any ideas&#8230; because i don&#8217;t get it with the two pages, is it a $_POST or a $_FILES&#8230; for the upload of the image&#8230;.</p>
<p>line 243 of rpc.php</p>
<p>case &#8216;addEvent&#8217;:<br />
		$day = $_POST['d'];<br />
		$month = $_POST['m'];<br />
		$year = $_POST['y'];<br />
		$body = $_POST['body'];</p>
<p>		$img = $_POST['img'];<br />
		$file = $_POST['img'];<br />
		$link = $_POST['link'];</p>
<p>		$timeStamp = mktime(0,0,0, $month, $day, $year);<br />
		$bodyF = addslashes(trim($body));</p>
<p>		$uploads_dir = &#8216;<a href="http://mysite.com/mysqlcal/images&#039;" rel="nofollow">http://mysite.com/mysqlcal/images&#039;</a>;<br />
		foreach ($_FILES['img']['error'] as $key =&gt; $error) {<br />
			if ($error == UPLOAD_ERR_OK) {<br />
				$tmp_name = $_FILES['img']['tmp_name'][$key];<br />
				$name = $_FILES['img']["name"][$key];<br />
				move_uploaded_file($tmp_name, $uploads_dir.&#8217;/&#8217;.$name);<br />
			}<br />
		}</p>
<p>		move_uploaded_file($img ,$structure.&#8217;/&#8217;.$img );</p>
<p>		$addEvent = mysql_query(&#8220;INSERT INTO event (body, timestamp, img, link) VALUES (&#8216;$body&#8217;, &#8216;$timeStamp&#8217;, &#8216;$img&#8217;, &#8216;$link&#8217;)&#8221;, $conn);</p>
<p>		break;</p>
<p>Can u help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Calendar with Event Manager v1.1 - html tutorials &#124; css tutorials &#124; php tutorials &#124; Nodstrum Blog</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-74856</link>
		<dc:creator>Calendar with Event Manager v1.1 - html tutorials &#124; css tutorials &#124; php tutorials &#124; Nodstrum Blog</dc:creator>
		<pubDate>Thu, 30 Sep 2010 12:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-74856</guid>
		<description>[...] This has been superceeded by V1.2; follow this link: http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/ [...]</description>
		<content:encoded><![CDATA[<p>[...] This has been superceeded by V1.2; follow this link: <a href="http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/" rel="nofollow">http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: André Martins</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-73641</link>
		<dc:creator>André Martins</dc:creator>
		<pubDate>Fri, 24 Sep 2010 12:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-73641</guid>
		<description>Hello Jamie! The link to download is not working anymore, please give us another link that is working. Thank you very much</description>
		<content:encoded><![CDATA[<p>Hello Jamie! The link to download is not working anymore, please give us another link that is working. Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-46892</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 17 Apr 2010 02:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-46892</guid>
		<description>Jim,
I&#039;m running php 5.3.0 on apache 2.2.11 on a wamp local server instance.
Your mySQL tables were successfully imported and created and can be connected to on my mySQL db running on the same local machine.

However...upon browsing in index.php in my install folder, I get undefined index &#039;action&#039; on index.php line 4.
The page continues to be interpreted with multiple errors upon trying to read the cookie  &#039;nodstrumCalendarV2&#039;. I haven&#039;t had any other failures from a setcookie php cmd when running this browser which is Firefox 3.6.3.  Any ideas?
Thanks in advance...
-Mike</description>
		<content:encoded><![CDATA[<p>Jim,<br />
I&#8217;m running php 5.3.0 on apache 2.2.11 on a wamp local server instance.<br />
Your mySQL tables were successfully imported and created and can be connected to on my mySQL db running on the same local machine.</p>
<p>However&#8230;upon browsing in index.php in my install folder, I get undefined index &#8216;action&#8217; on index.php line 4.<br />
The page continues to be interpreted with multiple errors upon trying to read the cookie  &#8216;nodstrumCalendarV2&#8242;. I haven&#8217;t had any other failures from a setcookie php cmd when running this browser which is Firefox 3.6.3.  Any ideas?<br />
Thanks in advance&#8230;<br />
-Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yip</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-35102</link>
		<dc:creator>yip</dc:creator>
		<pubDate>Wed, 06 Jan 2010 02:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-35102</guid>
		<description>how i can typing the big5 words in the add event box and show the big5 words....anyone help me??</description>
		<content:encoded><![CDATA[<p>how i can typing the big5 words in the add event box and show the big5 words&#8230;.anyone help me??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Arthur</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-29770</link>
		<dc:creator>Pedro Arthur</dc:creator>
		<pubDate>Sat, 24 Oct 2009 14:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-29770</guid>
		<description>how I can add the other years?.... because this Calendar have only 2006-...-2009. 
if I use this calendar, we are in 2009, an year change to 2010, the calendar will chage to? or I need to add the other years?? (if yes, how?)</description>
		<content:encoded><![CDATA[<p>how I can add the other years?&#8230;. because this Calendar have only 2006-&#8230;-2009.<br />
if I use this calendar, we are in 2009, an year change to 2010, the calendar will chage to? or I need to add the other years?? (if yes, how?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/comment-page-1/#comment-23147</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 22 Aug 2009 03:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2007/08/24/mysql-calendar-v12-multilingual/#comment-23147</guid>
		<description>sorry just click my name</description>
		<content:encoded><![CDATA[<p>sorry just click my name</p>
]]></content:encoded>
	</item>
</channel>
</rss>

