<?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 for Notes to self</title>
	<atom:link href="http://oerd.cukalla.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://oerd.cukalla.com</link>
	<description>(intelligent tagline here)</description>
	<lastBuildDate>Mon, 18 Apr 2011 07:35:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Paginating search results in CakePHP by Dipesh</title>
		<link>http://oerd.cukalla.com/cakephp/paginating-search-results-in-cakephp/comment-page-1/#comment-37</link>
		<dc:creator>Dipesh</dc:creator>
		<pubDate>Mon, 18 Apr 2011 07:35:20 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/?p=64#comment-37</guid>
		<description>Yes this code work preety fine but what if i want to use LIKE clause on it.?Please help me my work is stucked.</description>
		<content:encoded><![CDATA[<p>Yes this code work preety fine but what if i want to use LIKE clause on it.?Please help me my work is stucked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hello and welcome! by Flak</title>
		<link>http://oerd.cukalla.com/writing/hello-world/comment-page-1/#comment-36</link>
		<dc:creator>Flak</dc:creator>
		<pubDate>Sat, 18 Dec 2010 14:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/blog/?p=1#comment-36</guid>
		<description>Try Codeigniter, it&#039;s very powerful, and good documentation.

Cake is very good, but too large.</description>
		<content:encoded><![CDATA[<p>Try Codeigniter, it&#8217;s very powerful, and good documentation.</p>
<p>Cake is very good, but too large.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paginating search results in CakePHP by oerd</title>
		<link>http://oerd.cukalla.com/cakephp/paginating-search-results-in-cakephp/comment-page-1/#comment-25</link>
		<dc:creator>oerd</dc:creator>
		<pubDate>Wed, 07 Jul 2010 07:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/?p=64#comment-25</guid>
		<description>It seems to me that managing the search parameters in Cookies is not a good idea. Unless you are using advanced encryption techniques in Cookies (i.e. client side sessions), they are not reliable (they can be modified easily by the client), using them in your search queries might lead to SQL Query Injection.

Sending your search parameter via POST requests is a good idea.

The only other option I see to save your search parameters (but one that I strongly suggest not to use) is to persist them in model in the database. Having said that, I don&#039;t understand why using using Session to manage your keys is such a problem to you?</description>
		<content:encoded><![CDATA[<p>It seems to me that managing the search parameters in Cookies is not a good idea. Unless you are using advanced encryption techniques in Cookies (i.e. client side sessions), they are not reliable (they can be modified easily by the client), using them in your search queries might lead to SQL Query Injection.</p>
<p>Sending your search parameter via POST requests is a good idea.</p>
<p>The only other option I see to save your search parameters (but one that I strongly suggest not to use) is to persist them in model in the database. Having said that, I don&#8217;t understand why using using Session to manage your keys is such a problem to you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paginating search results in CakePHP by Jitendra Rathod</title>
		<link>http://oerd.cukalla.com/cakephp/paginating-search-results-in-cakephp/comment-page-1/#comment-24</link>
		<dc:creator>Jitendra Rathod</dc:creator>
		<pubDate>Wed, 07 Jul 2010 05:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/?p=64#comment-24</guid>
		<description>Thanks for posting this post. I am facing same type of problem in my admin side paging with the search parameter. In my case I am searching on the base of Email name and status and I want same search parameter on my subsequent pages in cakephp paging. But I am not able to do that by default cake php pagination. I have managed my search parameter in Cookies rather than in session because of I dont want to load on in the session. Please suggest any one better option for that. Also I want my search parameter to be sent through post method.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this post. I am facing same type of problem in my admin side paging with the search parameter. In my case I am searching on the base of Email name and status and I want same search parameter on my subsequent pages in cakephp paging. But I am not able to do that by default cake php pagination. I have managed my search parameter in Cookies rather than in session because of I dont want to load on in the session. Please suggest any one better option for that. Also I want my search parameter to be sent through post method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paginating search results in CakePHP by oerd</title>
		<link>http://oerd.cukalla.com/cakephp/paginating-search-results-in-cakephp/comment-page-1/#comment-15</link>
		<dc:creator>oerd</dc:creator>
		<pubDate>Wed, 02 Jun 2010 20:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/?p=64#comment-15</guid>
		<description>Mandi, thanks for sharing your thoughts. 

I agree with your observation.

In a web application however, like in a an online store, some items disappear and you&#039;d need to have some sort of version info in your DB. Or never delete items but mark them as inactive/unavailable.

In the studied case, if a property is sold, it should not appear in search results, nor in stored search results. Moreover I dislike HTTP GET for submitting a search request.

HTTP POST versus GET is a very long discussion and a lot of man hours have been spent writing on this argument ;)</description>
		<content:encoded><![CDATA[<p>Mandi, thanks for sharing your thoughts. </p>
<p>I agree with your observation.</p>
<p>In a web application however, like in a an online store, some items disappear and you&#8217;d need to have some sort of version info in your DB. Or never delete items but mark them as inactive/unavailable.</p>
<p>In the studied case, if a property is sold, it should not appear in search results, nor in stored search results. Moreover I dislike HTTP GET for submitting a search request.</p>
<p>HTTP POST versus GET is a very long discussion and a lot of man hours have been spent writing on this argument <img src='http://oerd.cukalla.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paginating search results in CakePHP by mandi</title>
		<link>http://oerd.cukalla.com/cakephp/paginating-search-results-in-cakephp/comment-page-1/#comment-14</link>
		<dc:creator>mandi</dc:creator>
		<pubDate>Wed, 02 Jun 2010 19:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/?p=64#comment-14</guid>
		<description>I do not agree with the statement that search queries should not be handled via GET method. If you are willing to store a snapshot of the search as seen in that moment, just insert a date argument in the search. 
Search Results should be linkable just as any other page article to my opinion.</description>
		<content:encoded><![CDATA[<p>I do not agree with the statement that search queries should not be handled via GET method. If you are willing to store a snapshot of the search as seen in that moment, just insert a date argument in the search.<br />
Search Results should be linkable just as any other page article to my opinion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hello and welcome! by admin</title>
		<link>http://oerd.cukalla.com/writing/hello-world/comment-page-1/#comment-2</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 03 Jun 2009 09:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://oerd.cukalla.com/blog/?p=1#comment-2</guid>
		<description>nice one</description>
		<content:encoded><![CDATA[<p>nice one</p>
]]></content:encoded>
	</item>
</channel>
</rss>

