<?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>zechim.com</title>
	<atom:link href="http://zechim.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://zechim.com/blog</link>
	<description>PHP &#38; jQuery specialist [+55 11 7053 2239]</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:46:45 +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>chmod recursive</title>
		<link>http://zechim.com/blog/2012/02/10/chmod-recursive/</link>
		<comments>http://zechim.com/blog/2012/02/10/chmod-recursive/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 13:44:45 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php functions]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=70</guid>
		<description><![CDATA[function chmod_r&#40;$path, $filemode&#41; &#123; &#160; if &#40;!is_dir&#40;$path&#41;&#41; &#123; &#160; return chmod&#40;$path, $filemode&#41;; &#125; &#160; $dh = opendir&#40;$path&#41;; &#160; while &#40;$file = readdir&#40;$dh&#41;&#41; &#123; &#160; if &#40;$file != '.' &#38;&#38; $file != '..'&#41; &#123; &#160; $fullpath = $path.'/'.$file; &#160; if &#40;!is_dir&#40;$fullpath&#41;&#41; &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/02/10/chmod-recursive/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> chmod_r<span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filemode</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">is_dir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
  		<span style="color: #b1b100;">return</span> <span style="color: #990000;">chmod</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filemode</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 	<span style="color: #009900;">&#125;</span>
&nbsp;
 	<span style="color: #000088;">$dh</span> <span style="color: #339933;">=</span> <span style="color: #990000;">opendir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
 	<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <span style="color: #990000;">readdir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dh</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'.'</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$file</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'..'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<span style="color: #000088;">$fullpath</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$path</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$file</span><span style="color: #339933;">;</span>
&nbsp;
	   	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">is_dir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fullpath</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	    		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">chmod</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fullpath</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filemode</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	     			<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
	    		<span style="color: #009900;">&#125;</span>
&nbsp;
	   		<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	    		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>chmod_r<span style="color: #009900;">&#40;</span><span style="color: #000088;">$fullpath</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filemode</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	     			<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
	    		<span style="color: #009900;">&#125;</span>
	   	<span style="color: #009900;">&#125;</span>
	  <span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
 	<span style="color: #990000;">closedir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dh</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
 	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">chmod</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #339933;">,</span> <span style="color: #000088;">$filemode</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
  		<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
 	<span style="color: #009900;">&#125;</span>
&nbsp;
 	<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>usage:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">chmod_r<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'your/path'</span><span style="color: #339933;">,</span> <span style="color: #208080;">0777</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F02%2F10%2Fchmod-recursive%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=70" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/02/10/chmod-recursive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zip files on terminal</title>
		<link>http://zechim.com/blog/2012/01/31/zip-files-on-terminal/</link>
		<comments>http://zechim.com/blog/2012/01/31/zip-files-on-terminal/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 19:09:06 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=67</guid>
		<description><![CDATA[zip -r /path/to/filename.zip /path/where/the/files/are/placed/]]></description>
			<content:encoded><![CDATA[<pre>
zip -r /path/to/filename.zip /path/where/the/files/are/placed/
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F31%2Fzip-files-on-terminal%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=67" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/31/zip-files-on-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql foreign key check</title>
		<link>http://zechim.com/blog/2012/01/24/mysql-foreign-key-check/</link>
		<comments>http://zechim.com/blog/2012/01/24/mysql-foreign-key-check/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:19:12 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[foreign key]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=62</guid>
		<description><![CDATA[turn off SET FOREIGN_KEY_CHECKS=0; turn on SET FOREIGN_KEY_CHECKS=1; ex.: SET FOREIGN_KEY_CHECKS=0; YOUR QUERY; SET FOREIGN_KEY_CHECKS=1;]]></description>
			<content:encoded><![CDATA[<p>turn off</p>
<pre>
SET FOREIGN_KEY_CHECKS=0;
</pre>
<p>turn on</p>
<pre>
SET FOREIGN_KEY_CHECKS=1;
</pre>
<p>ex.:</p>
<pre>
SET FOREIGN_KEY_CHECKS=0;
YOUR QUERY;
SET FOREIGN_KEY_CHECKS=1;
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F24%2Fmysql-foreign-key-check%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=62" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/24/mysql-foreign-key-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn ignore</title>
		<link>http://zechim.com/blog/2012/01/16/svn-ignore/</link>
		<comments>http://zechim.com/blog/2012/01/16/svn-ignore/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 12:42:26 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn command]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=58</guid>
		<description><![CDATA[1 &#8211; go to folder where your files are placed 2 &#8211; Edit the properties for the current directory svn propedit svn:ignore . 3 &#8211; Add the files or patterns ex: Ignores all .conf files on the current directory *.conf &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/01/16/svn-ignore/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>1 &#8211; go to folder where your files are placed</p>
<p>2 &#8211; Edit the properties for the current directory</p>
<pre>
svn propedit svn:ignore .
</pre>
<p>3 &#8211; Add the files or patterns ex:</p>
<p>Ignores all .conf files on the current directory</p>
<pre>
*.conf
</pre>
<p>4 &#8211; Save your file (^X if you&#8217;re using nano)</p>
<p>5 &#8211; Confirm what you did (you can skip this)</p>
<p>You can see your property</p>
<pre>
svn propget svn:ignore .
</pre>
<p>You should see an &#8216;I&#8217; next to the ignored files</p>
<pre>
svn status --no-ignore
</pre>
<p>6 &#8211; Commit your changes</p>
<pre>
svn commit -m 'svn ignore'
</pre>
<p>Now you can ask:<br />
- Ok, but if I want to undo these changes or add some new files or patterns? </p>
<p>I say: Easy!</p>
<p>- If you and to add new files or patterns: Repeat all above steps (1 &#8211; 6)</p>
<p>If you want do undo these changes, you need to go to your directory and type:</p>
<pre>
svn propdel svn:ignore
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F16%2Fsvn-ignore%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=58" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/16/svn-ignore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chmod recursive on terminal</title>
		<link>http://zechim.com/blog/2012/01/16/chmod-recursive-on-terminal/</link>
		<comments>http://zechim.com/blog/2012/01/16/chmod-recursive-on-terminal/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 11:59:23 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=55</guid>
		<description><![CDATA[chmod permissionsettings dirname* -R]]></description>
			<content:encoded><![CDATA[<pre>
chmod permissionsettings dirname* -R
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F16%2Fchmod-recursive-on-terminal%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=55" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/16/chmod-recursive-on-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unrar files on linux ubuntu</title>
		<link>http://zechim.com/blog/2012/01/13/unrar-files-on-linux-ubuntu/</link>
		<comments>http://zechim.com/blog/2012/01/13/unrar-files-on-linux-ubuntu/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 12:11:20 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[rar]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=52</guid>
		<description><![CDATA[sudo apt-get install unrar unrar x file.rar]]></description>
			<content:encoded><![CDATA[<pre>
sudo apt-get install unrar
</pre>
<pre>
unrar x file.rar
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F13%2Funrar-files-on-linux-ubuntu%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=52" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/13/unrar-files-on-linux-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Rest with cURL</title>
		<link>http://zechim.com/blog/2012/01/12/php-rest-with-curl/</link>
		<comments>http://zechim.com/blog/2012/01/12/php-rest-with-curl/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 11:16:49 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php functions]]></category>
		<category><![CDATA[request method]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[server request]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=46</guid>
		<description><![CDATA[request.php function request&#40;$request_type&#41; &#123; &#160; $ch = curl_init&#40;&#41;; &#160; curl_setopt &#40;$ch, CURLOPT_URL, &#34;http://localhost/server.php&#34;&#41;; &#160; switch &#40;true&#41; &#123; &#160; case $request_type == 'get': &#160; curl_setopt &#40;$ch, CURLOPT_HEADER, 0&#41;; &#160; break; &#160; case $request_type == 'post': &#160; curl_setopt&#40;$ch, CURLOPT_POST, 1&#41;; curl_setopt&#40;$ch, CURLOPT_POSTFIELDS, &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/01/12/php-rest-with-curl/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>request.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> request<span style="color: #009900;">&#40;</span><span style="color: #000088;">$request_type</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #990000;">curl_setopt</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;http://localhost/server.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<span style="color: #b1b100;">case</span> <span style="color: #000088;">$request_type</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'get'</span><span style="color: #339933;">:</span>
&nbsp;
			<span style="color: #990000;">curl_setopt</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_HEADER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">case</span> <span style="color: #000088;">$request_type</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'post'</span><span style="color: #339933;">:</span>
&nbsp;
			<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'foo'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'bar'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">case</span> <span style="color: #000088;">$request_type</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'put'</span> <span style="color: #339933;">:</span>
&nbsp;
			<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_CUSTOMREQUEST<span style="color: #339933;">,</span> <span style="color: #0000ff;">'PUT'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">case</span> <span style="color: #000088;">$request_type</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'delete'</span><span style="color: #339933;">:</span>
&nbsp;
			<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_CUSTOMREQUEST<span style="color: #339933;">,</span> <span style="color: #0000ff;">'DELETE'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span>request<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span>request<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span>request<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'put'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span>request<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'delete'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>server.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'REQUESTED: '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_METHOD'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F12%2Fphp-rest-with-curl%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=46" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/12/php-rest-with-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarty with php count function</title>
		<link>http://zechim.com/blog/2012/01/04/smarty-with-php-count-function/</link>
		<comments>http://zechim.com/blog/2012/01/04/smarty-with-php-count-function/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 16:34:21 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Smarty]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=43</guid>
		<description><![CDATA[{if $myarray&#124;@count gt 0}...{/if}]]></description>
			<content:encoded><![CDATA[<pre>
{if $myarray|@count gt 0}...{/if}
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F04%2Fsmarty-with-php-count-function%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=43" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/04/smarty-with-php-count-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Countdown</title>
		<link>http://zechim.com/blog/2012/01/04/javascript-countdown/</link>
		<comments>http://zechim.com/blog/2012/01/04/javascript-countdown/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 12:08:59 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[countdown]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[Javasript]]></category>
		<category><![CDATA[settimeout function]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=32</guid>
		<description><![CDATA[var countdown = &#123; d : 0, h : 0, m : 0, s : 0, set : function&#40;d, h, m ,s&#41; &#123; this.d = d; this.h = h; this.m = m; this.s = s; this.begin&#40;&#41;; &#125;, &#160; begin : &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/01/04/javascript-countdown/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> countdown <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
    d <span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> h <span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> m <span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> s <span style="color: #339933;">:</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">,</span>
    set <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>d<span style="color: #339933;">,</span> h<span style="color: #339933;">,</span> m <span style="color: #339933;">,</span>s<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span> <span style="color: #339933;">=</span> d<span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">=</span> h<span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">=</span> m<span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">=</span> s<span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">begin</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
&nbsp;
    begin <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    	<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span> <span style="color: #339933;">||</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span> <span style="color: #339933;">||</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span> <span style="color: #339933;">||</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    		<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    			<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    				<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    					<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    						<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">23</span><span style="color: #339933;">;</span>
    						<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">59</span><span style="color: #339933;">;</span>
	    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">59</span><span style="color: #339933;">;</span>
    						<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span><span style="color: #339933;">--;</span>
&nbsp;
    					<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    						<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
	    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
	    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
    					<span style="color: #009900;">&#125;</span>
&nbsp;
    				<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span><span style="color: #339933;">--;</span>
    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">59</span><span style="color: #339933;">;</span>
    					<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">59</span><span style="color: #339933;">;</span>
    				<span style="color: #009900;">&#125;</span>
&nbsp;
    			<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    				<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span><span style="color: #339933;">--;</span>
    				<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">=</span> <span style="color: #CC0000;">59</span><span style="color: #339933;">;</span>
    			<span style="color: #009900;">&#125;</span>
&nbsp;
    		<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    			<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span><span style="color: #339933;">--;</span>
    		<span style="color: #009900;">&#125;</span>
&nbsp;
	    	document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'day'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> 	<span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span> <span style="color: #339933;">&lt;=</span><span style="color: #CC0000;">9</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'0'</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span> <span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">d</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    	document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'hour'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> 	<span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">&lt;=</span><span style="color: #CC0000;">9</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'0'</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span> <span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">h</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    	document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'minute'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">&lt;=</span><span style="color: #CC0000;">9</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'0'</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span> <span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">m</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    	document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'second'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">&lt;=</span><span style="color: #CC0000;">9</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'0'</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span> <span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">s</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    		setTimeout<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	    		countdown.<span style="color: #660066;">begin</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    	<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>usage:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">Day:
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;day&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span> <span style="color: #66cc66;">/</span>&gt;</span>
Hour:
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hour&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span> <span style="color: #66cc66;">/</span>&gt;</span>
Minute:
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;minute&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span> <span style="color: #66cc66;">/</span>&gt;</span>
Second:
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;second&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span>
countdown.set(1, 0, 0, 3);
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></div></div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F04%2Fjavascript-countdown%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=32" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/04/javascript-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php.ini on ubuntu</title>
		<link>http://zechim.com/blog/2012/01/02/php-ini-on-ubuntu/</link>
		<comments>http://zechim.com/blog/2012/01/02/php-ini-on-ubuntu/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 13:12:48 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[config file]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=28</guid>
		<description><![CDATA[/etc/php5/apache2/php.ini]]></description>
			<content:encoded><![CDATA[<pre>
/etc/php5/apache2/php.ini
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F01%2F02%2Fphp-ini-on-ubuntu%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=28" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/01/02/php-ini-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1163/1293 objects using disk: basic

Served from: zechim.com @ 2012-02-22 23:46:26 -->
