<?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/"
	>

<channel>
	<title>MyFunnyDev &#187; PHP</title>
	<atom:link href="http://michalkuklis.com/blog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://michalkuklis.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 14 Jan 2012 17:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>how to remove .svn from all folders &#8211; command line</title>
		<link>http://michalkuklis.com/blog/2008/10/15/how-to-remove-svn-from-all-folders-command-line/</link>
		<comments>http://michalkuklis.com/blog/2008/10/15/how-to-remove-svn-from-all-folders-command-line/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 03:20:33 +0000</pubDate>
		<dc:creator>Michał Kuklis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://michalkuklis.com/blog/?p=39</guid>
		<description><![CDATA[find . -name &#34;.svn&#34; -exec rm -rf '{}' \;]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash"><span class="kw2">find</span> . <span class="re5">-name</span> <span class="st0">&quot;.svn&quot;</span> <span class="re5">-exec</span> <span class="kw2">rm</span> <span class="re5">-rf</span> <span class="st_h">'{}'</span> \;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://michalkuklis.com/blog/2008/10/15/how-to-remove-svn-from-all-folders-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recognize Ajax Request (XMLHttpRequest)</title>
		<link>http://michalkuklis.com/blog/2006/08/28/recoginze-ajax-request-xmlhttprequest/</link>
		<comments>http://michalkuklis.com/blog/2006/08/28/recoginze-ajax-request-xmlhttprequest/#comments</comments>
		<pubDate>Mon, 28 Aug 2006 15:40:11 +0000</pubDate>
		<dc:creator>Michał Kuklis</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://michalkuklis.com/archives/18</guid>
		<description><![CDATA[To recognize Ajax Request (Prototype/JQuery) in PHP you can use following code: function xhr() { return isset($_SERVER['HTTP_X_REQUESTED_WITH']) &#038;&#038; $_SERVER ['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest'; }]]></description>
			<content:encoded><![CDATA[<p>To recognize Ajax Request (Prototype/JQuery) in PHP you can use following code:</p>
<div class="wp_syntax">
<div class="code">
<pre class="php">
function xhr() {
 return isset($_SERVER['HTTP_X_REQUESTED_WITH']) &#038;&#038;
 $_SERVER ['HTTP_X_REQUESTED_WITH']  == 'XMLHttpRequest';
}
</pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://michalkuklis.com/blog/2006/08/28/recoginze-ajax-request-xmlhttprequest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Frameworks</title>
		<link>http://michalkuklis.com/blog/2006/03/21/php-frameworks/</link>
		<comments>http://michalkuklis.com/blog/2006/03/21/php-frameworks/#comments</comments>
		<pubDate>Tue, 21 Mar 2006 15:27:49 +0000</pubDate>
		<dc:creator>Michał Kuklis</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://michalkuklis.com/archives/9</guid>
		<description><![CDATA[If you&#8217;re wondering which PHP framework will work for you or you&#8217;re getting headache by just thinking about them you should take a look on this article. There is also quick overview of 10 most popular frameworks here. I personally like Symfony.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re wondering which PHP framework will work for you or you&#8217;re getting headache by just thinking about them you should take a look on this <a href="http://www.phpwact.org/php/mvc_frameworks">article</a>. There is also quick overview of 10 most popular frameworks <a href="http://www.phpit.net/article/ten-different-php-frameworks/">here</a>. I personally like <a href="http://www.symfony-project.com/">Symfony</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://michalkuklis.com/blog/2006/03/21/php-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony javascript helpers doc</title>
		<link>http://michalkuklis.com/blog/2006/03/19/symfony-javascript-helpers-doc/</link>
		<comments>http://michalkuklis.com/blog/2006/03/19/symfony-javascript-helpers-doc/#comments</comments>
		<pubDate>Sun, 19 Mar 2006 11:47:13 +0000</pubDate>
		<dc:creator>Michał Kuklis</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://michalkuklis.com/?p=6</guid>
		<description><![CDATA[There is new doc about javascript (AJAX) helpers on Symfony website. Also if you&#8217;re an AJAX fan you should see how Symfony plays with JSON. You can read more about JSON format here.]]></description>
			<content:encoded><![CDATA[<p>There is new <a href="http://www.symfony-project.com/content/book/page/javascript.html">doc</a> about javascript (AJAX) helpers on <a href="http://www.symfony-project.com/">Symfony</a> website. Also if you&#8217;re an AJAX fan you should see how  <a href="http://www.symfony-project.com/trac/wiki/AjaxAndJSON">Symfony plays with JSON</a>. You can read more about JSON format <a href="http://www.json.org">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://michalkuklis.com/blog/2006/03/19/symfony-javascript-helpers-doc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

