<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kurinchi Blogger Scribbles ...</title>
	<atom:link href="http://kurinchiblogger.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kurinchiblogger.wordpress.com</link>
	<description>No Sense - No Cents Notes</description>
	<lastBuildDate>Thu, 15 Sep 2011 18:17:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kurinchiblogger.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/288dd5379d6ee28fd6c10250b6658a26?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Kurinchi Blogger Scribbles ...</title>
		<link>http://kurinchiblogger.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kurinchiblogger.wordpress.com/osd.xml" title="Kurinchi Blogger Scribbles ..." />
	<atom:link rel='hub' href='http://kurinchiblogger.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Import CSV data to a MySQL table in a database from command line?</title>
		<link>http://kurinchiblogger.wordpress.com/2011/09/14/how-to-import-csv-data-to-a-mysql-table-in-a-database-from-command-line/</link>
		<comments>http://kurinchiblogger.wordpress.com/2011/09/14/how-to-import-csv-data-to-a-mysql-table-in-a-database-from-command-line/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 00:33:01 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[import command line]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=315</guid>
		<description><![CDATA[First log into MySQL from command line and create the table &#8220;table_user&#8221; under the database &#8220;db_user&#8221; mysql&#62; use db_user; mysql&#62; desc table_user; +&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+ &#124; Field &#124; Type &#124; Null &#124; Key &#124; Default &#124; Extra &#124; +&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+ &#124; id &#124; int(11) &#124; NO &#124; PRI &#124; NULL &#124; auto_increment &#124; &#124; name &#124; varchar(255) &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=315&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First log into MySQL from command line and create the table &#8220;table_user&#8221; under the database &#8220;db_user&#8221;</p>
<p>mysql&gt; use db_user;</p>
<p>mysql&gt; desc table_user;<br />
+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| Field | Type         | Null | Key | Default | Extra          |<br />
+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| id    | int(11)      | NO   | PRI | NULL    | auto_increment |<br />
| name  | varchar(255) | NO   |     | NULL    |                |<br />
| age   | varchar(20)  | NO   |     | NULL    |                |<br />
| email | varchar(255) | NO   |     | NULL    |                |<br />
+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
4 rows in set (0.00 sec)</p>
<p>mysql&gt; load data local infile &#8216;/userinfo.csv&#8217;<br />
    -&gt; into table table_user<br />
    -&gt; fields terminated by &#8216;,&#8217;<br />
    -&gt; lines terminated by &#8216;\n&#8217;<br />
    -&gt; (name, age, email);</p>
<p>Note: &#8220;id&#8221; field is skipped from the list for it to be auto incremented.</p>
<p>Check more information at <a href="http://kurinchilamp.kurinchilion.com/2009/02/mysql-tip-for-beginners-import-records-from-csv-from-command-line.html" title="MySQL CSV Import command line">kurinchilamp.kurinchilion.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/315/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=315&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2011/09/14/how-to-import-csv-data-to-a-mysql-table-in-a-database-from-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>JQuery: Showing a progress image while processing background task</title>
		<link>http://kurinchiblogger.wordpress.com/2009/06/11/jquery-showing-a-progress-image-while-processing-background-task/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/06/11/jquery-showing-a-progress-image-while-processing-background-task/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 00:59:20 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[UI, CSS, HTML]]></category>
		<category><![CDATA[background task]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery a href]]></category>
		<category><![CDATA[progress bar]]></category>
		<category><![CDATA[progress image]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=311</guid>
		<description><![CDATA[I thought to write a simple example to show a progress bar or a gif image showing a that a task is happening at the background using a jquery function. i) Include jquery script file in the header section and the following code in the head &#60;script language="javascript"&#62; $(document).ready(function(){ $('#progress').hide(); $("#main a.bgdiv").click(function(){ $("#progress").show("slow"); $("body").load($(this).attr('href')); return [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=311&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I thought to write a simple <strong>example to show a progress bar </strong>or a gif image showing a that a task is happening at the background using a jquery function.</p>
<p>i) Include jquery script file in the header section and the following code in the head</p>
<pre class="brush: php;">
&lt;script language="javascript"&gt;
$(document).ready(function(){
    $('#progress').hide();
    $("#main a.bgdiv").click(function(){
        $("#progress").show("slow");
        $("body").load($(this).attr('href'));
        return false;
    });
});
&lt;/script&gt;
</pre>
<p><span id="more-311"></span><br />
ii) The following html code comes in the body </p>
<pre class="brush: php;">
&lt;div id="progress"&gt;
  &lt;img src="progress-rotator.gif"&gt;
&lt;/div&gt;
&lt;div id="main"&gt;
   &lt;a href="link-to-file-for-background-process.php" class="bgdiv"&gt;Click here for MySQL Backup&lt;/a&gt;
&lt;/div&gt;
</pre>
<p>NOTE: In <strong>JQuery</strong>, when the click action is initiated by clicking &#8220;Click here for MySQL Backup&#8221; it will NOT link to php file immediately and it will inturn show the progress gif image layer first. Only after that it will load the php file. </p>
<p>Visit <a href="http://kurinchilamp.kurinchilion.com">kurinchilamp </a> to learn more info</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=311&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/06/11/jquery-showing-a-progress-image-while-processing-background-task/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>cakePHP: Session enabled messages using Session-&gt;setFlash</title>
		<link>http://kurinchiblogger.wordpress.com/2009/06/09/cakephp-session-enabled-messages-using-session-setflash/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/06/09/cakephp-session-enabled-messages-using-session-setflash/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 03:31:16 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cakePHP]]></category>
		<category><![CDATA[cakephp session message]]></category>
		<category><![CDATA[setFlash]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/2009/06/09/cakephp-session-enabled-messages-using-session-setflash/</guid>
		<description><![CDATA[There are different ways to flash or publish the messages for a user action. Usability plays a major role in determining how the navigation pattern for a web application takes place. publishing the outcome of user action on the same page designing a single page to flash all success, error, warning, notice level messages designing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=309&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are different ways to flash or publish the messages for a user action. Usability plays a major role in determining how the navigation pattern for a web application takes place.</p>
<ul>
<li>publishing the outcome of user action on the same page</li>
<li>designing a single page to flash all success, error, warning, notice level messages</li>
<li>designing a separate page for each message that gets published for the user</li>
</ul>
<p><a href="http://kurinchilamp.kurinchilion.com/2009/06/cakephp-session-enabled-messages-using-session-setflash.html">To read more on CakePHP refer &#8230;</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/309/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=309&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/06/09/cakephp-session-enabled-messages-using-session-setflash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP: Fatal error: Maximum execution time of 30 seconds exceeded</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/28/php-fatal-error-maximum-execution-time-of-30-seconds-exceeded/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/28/php-fatal-error-maximum-execution-time-of-30-seconds-exceeded/#comments</comments>
		<pubDate>Fri, 29 May 2009 02:07:52 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php fatal error]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[set_time_limit]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=307</guid>
		<description><![CDATA[This error happens when the execution time of the PHP script exceeds the time limit for program execution in Php.ini file. By default the timer is set to 30 seconds in php.ini and you can track the time limit by tracing for &#8216;max_execution_time&#8217; directive in php.ini. Read more to know the solution &#187;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=307&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This error happens when the execution time of the PHP script exceeds the time limit for program execution in Php.ini file. </p>
<p>By default the timer is set to <strong>30 seconds</strong> in <strong>php.ini</strong> and you can track the time limit by tracing for &#8216;max_execution_time&#8217; directive in php.ini. </p>
<p><a href="http://kurinchilamp.kurinchilion.com/2009/05/php-fatal-error-maximum-execution-time-of-30-seconds-exceeded.html">Read more to know the solution &raquo;</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=307&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/28/php-fatal-error-maximum-execution-time-of-30-seconds-exceeded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>What is a Third-party cookie?</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/24/what-is-a-third-party-cookie/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/24/what-is-a-third-party-cookie/#comments</comments>
		<pubDate>Mon, 25 May 2009 01:55:42 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ad server]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[third party cookie]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=304</guid>
		<description><![CDATA[Third party cookies are the cookies that are served by sites other than the site that you are visiting. For example, Ad serving companies serve their cookies to your computer when you visit a particular site to track which Ads were served, their relevancy to the content where the Ads get published and other such [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=304&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Third party cookies </strong>are the cookies that are served by sites other than the site that you are visiting.</p>
<p>For example, Ad serving companies serve their cookies to your computer when you visit a particular site to track which Ads were served, their relevancy to the content where the Ads get published and other such details in addition to keeping track of the user preferences.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=304&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/24/what-is-a-third-party-cookie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>Fahrner Image Replacement CSS</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/21/fahrner-image-replacement-css/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/21/fahrner-image-replacement-css/#comments</comments>
		<pubDate>Fri, 22 May 2009 01:00:48 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[UI, CSS, HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Fahrner Image Replacement]]></category>
		<category><![CDATA[FIR]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=301</guid>
		<description><![CDATA[FIR stands for Fahrner Image Replacement named after Todd Fahrner. It is a standard compliant technique in which &#60;h1&#62; and &#60;span&#62; tags are used to have nice heading and highlights. Key fact in this technique is that the text will get displayed even if the CSS is disabled for some reason, hence presenting the text [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=301&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>FIR </strong>stands for <strong>Fahrner Image Replacement </strong>named after <em>Todd Fahrner</em>.</p>
<p>It is a standard compliant technique in which &lt;h1&gt; and &lt;span&gt; tags are used to have nice heading and highlights.</p>
<p>Key fact in this technique is that the text will get displayed even if the CSS is disabled for some reason, hence presenting the text on browsers and in screen readers.<br />
<a href="http://kurinchilamp.kurinchilion.com/2009/05/css-fir-explained.html">Read more</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=301&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/21/fahrner-image-replacement-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Register Globals and Security Vulnerability</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/20/php-register-globals-and-security-vulnerability/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/20/php-register-globals-and-security-vulnerability/#comments</comments>
		<pubDate>Thu, 21 May 2009 01:00:42 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[environment variables]]></category>
		<category><![CDATA[register globals]]></category>
		<category><![CDATA[register_globals]]></category>
		<category><![CDATA[security vulnerability]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=299</guid>
		<description><![CDATA[Register Globals directive is turned OFF from PHP version 4.2. PHP Global Variables Environment variables, GET, POST, Server, Cookie variables are knows as Global Variables. When register_globals directive is turned ON (like what most ISP&#8217;s did), you can access/set the global variables like $username, $password instead of $_POST["username"], $_POST["password"]. Read more<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=299&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Register Globals directive is turned OFF from PHP version 4.2.</em></p>
<p><strong>PHP Global Variables</strong><br />
Environment variables, GET, POST, Server, Cookie variables are knows as Global Variables.</p>
<p>When register_globals directive is turned ON (like what most ISP&#8217;s did), you can access/set the global variables like $username, $password instead of $_POST["username"], $_POST["password"].</p>
<p><a href="http://kurinchilamp.kurinchilion.com/2009/05/register-globals-and-security-vulnerability.html">Read more</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/299/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=299&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/20/php-register-globals-and-security-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP: escapeshellcmd, escapeshellarg</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/19/php-escapeshellcmd-escapeshellarg/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/19/php-escapeshellcmd-escapeshellarg/#comments</comments>
		<pubDate>Tue, 19 May 2009 06:10:46 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[escapeshellarg]]></category>
		<category><![CDATA[escapeshellcmd]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=297</guid>
		<description><![CDATA[escapeshellcmd and escapeshellarg are two commands that are used to escape the defect causing characters that are present in the system command or the arguments that get passed to it respectively. Before passing the commands to the system or exec, the strings get escaped using these commands. Sample program to demonstrate the usage: &#60;?php // [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=297&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>escapeshellcmd </strong>and <strong>escapeshellarg </strong>are two commands that are used to escape the defect causing characters that are present in the system command or the arguments that get passed to it respectively. Before passing the commands to the system or exec, the strings get escaped using these commands.</p>
<p><em>Sample program to demonstrate the usage:</em></p>
<p>&lt;?php</p>
<p>// shell command<br />
$mycmd = &#8220;ls -al&#8221;;<br />
$returncmd = escapeshellcmd($mycmd);<br />
system($returncmd);</p>
<p>// shell arguments<br />
$myshellargs = &#8220;al&#8221;;<br />
system(&#8220;ls -&#8221;.escapeshellargs($myshellargs);<br />
?&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/297/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=297&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/19/php-escapeshellcmd-escapeshellarg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Backtick operator `</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/18/php-backtick-operator/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/18/php-backtick-operator/#comments</comments>
		<pubDate>Mon, 18 May 2009 16:42:39 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[backtick operator]]></category>
		<category><![CDATA[shell_exec]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=295</guid>
		<description><![CDATA[PHP Backtick operator ` This is the equivalent of shell_exec() command in php. It needs to be present in pair for the commands within it to get executed at the system level. When shell_exec is disabled or when safe_mode is enabled, this operator is disabled.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=295&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>PHP Backtick operator `</strong></p>
<p>This is the equivalent of shell_exec() command in php. It needs to be present in pair for the commands within it to get executed at the system level.</p>
<p>When <strong>shell_exec is disabled </strong>or <strong>when safe_mode is enabled</strong>, this operator is disabled.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=295&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/18/php-backtick-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP XSS: htmlspecialchars vs. htmlentities</title>
		<link>http://kurinchiblogger.wordpress.com/2009/05/17/php-xss-htmlspecialchars-vs-htmlentities/</link>
		<comments>http://kurinchiblogger.wordpress.com/2009/05/17/php-xss-htmlspecialchars-vs-htmlentities/#comments</comments>
		<pubDate>Sun, 17 May 2009 16:14:46 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Cross site scripting]]></category>
		<category><![CDATA[htmlentities]]></category>
		<category><![CDATA[htmlspecialchars]]></category>
		<category><![CDATA[html_safe library]]></category>
		<category><![CDATA[Pear library]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=293</guid>
		<description><![CDATA[Cross site scripting XSS is a term used to refer attacks or loop holes present in the scripting used by websites favoring hackers to exploit this path towards identity theft or phishing. In PHP, two functions are mainly used to circumvent XSS attacks. i) htmlspecialchars ii) htmlentities Read more<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=293&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Cross site scripting XSS</strong> is a term used to refer attacks or loop holes present in the scripting used by websites favoring hackers to exploit this path towards identity theft or phishing.</p>
<p>In PHP, two functions are mainly used to circumvent XSS attacks.<br />
i) htmlspecialchars<br />
ii) htmlentities</p>
<p><a href="http://kurinchilamp.kurinchilion.com/2009/05/php-xss-htmlspecialchars-vs-htmlentities.html">Read more</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kurinchiblogger.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kurinchiblogger.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kurinchiblogger.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kurinchiblogger.wordpress.com&amp;blog=5735881&amp;post=293&amp;subd=kurinchiblogger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kurinchiblogger.wordpress.com/2009/05/17/php-xss-htmlspecialchars-vs-htmlentities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe86944bc53b508b88623b50b15151f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kurinchi blogger</media:title>
		</media:content>
	</item>
	</channel>
</rss>
