<?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>Fabio DeMelo</title>
	<atom:link href="http://www.fabiodemelo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fabiodemelo.com</link>
	<description>Another web lover!</description>
	<lastBuildDate>Sat, 11 Feb 2012 18:37:22 +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>Php Curl</title>
		<link>http://www.fabiodemelo.com/php/php-curl/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-curl</link>
		<comments>http://www.fabiodemelo.com/php/php-curl/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 06:24:34 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[Code Examples]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=205</guid>
		<description><![CDATA[If you want to write a sort of php wrapper to include the results of another http(s) request maybe pointing to a totally different site or just different code (mod_perl with HTML::Mason, in my case) into a php based layout, &#8230; <a href="http://www.fabiodemelo.com/php/php-curl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you want to write a sort of php wrapper to include the results of another http(s) request maybe pointing to a totally different site or just different code (mod_perl with HTML::Mason, in my case) into a php based layout, and just pass-thru all GET and POST variables to the sub-request, the following snippet can be used. Note there is no error handling, so this is subject to the underlying application.</p>

<div class="wp_code"><div class="pre"><pre class="php" style="font-family:'Times New Roman',Garamond, Times;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<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: #000088;">$sub_req_url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$encoded</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// include GET as well as POST variables; your needs may vary.</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$name</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$encoded</span> <span style="color: #339933;">.=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'='</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$name</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$encoded</span> <span style="color: #339933;">.=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'='</span><span style="color: #339933;">.</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$value</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">// chop off last ampersand</span>
<span style="color: #000088;">$encoded</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$encoded</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$encoded</span><span style="color: #009900;">&#41;</span><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: #000088;">$encoded</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_HEADER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</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_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_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: #990000;">curl_close</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: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Organic SEO</title>
		<link>http://www.fabiodemelo.com/seo/understanding-organic-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=understanding-organic-seo</link>
		<comments>http://www.fabiodemelo.com/seo/understanding-organic-seo/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 02:49:15 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[fabio de melo]]></category>
		<category><![CDATA[fabiodemelo]]></category>
		<category><![CDATA[understading SEO]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=200</guid>
		<description><![CDATA[Don’t go foolin’ yourself. Organic SEO is just as much work as any other type of SEO. It’s just a little different method of creating a site optimized for search ranking, without having to implement any new technologies or spend &#8230; <a href="http://www.fabiodemelo.com/seo/understanding-organic-seo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Don’t go foolin’ yourself. Organic SEO is just as much work as any other type of SEO. It’s just a little different method of creating a site optimized for search ranking, without having to implement any new technologies or spend a lot of time submitting your site to different primary and secondary search engines. And really, the distinction here is a very general one. Only SEO purists<br />
consider “real SEO” as being strictly organic — meaning you use no fee-based services whatever.</p>
<p>Most people are happy with “just plain SEO,” which usually means a combination of organic and fee-based. It’s best if you just think of SEO as just SEO; then you don’t have to worry about distinctions that aren’t really important in optimizing your web site. The definitions of organic SEO vary a little, depending on whom you talk to. Some SEO experts think it’s all about optimizing the content of your web site to catch the attention of the crawlers and spiders that index sites. Others think it’s the number of quality links you can generate on your site. But in<br />
truth, organic SEO is a combination of those and other elements, such as site tagging, that will naturally place your web site in search engine rankings. How high in those rankings depends on how well<br />
you design your site.</p>
<p>But before you go thinking that organic SEO is just the solution you’ve been looking for, take a step back. What organic SEO is not is an easy way to land in a search engine. Basically, if you put a web site online and spend a little time getting it ready for the world to see, you will have probably achieved some measure of organic SEO without really trying.</p>
<p><em>Credits:<br />
Search Engine Optimization Bible &amp; searchengineoptimization.com</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/seo/understanding-organic-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between two dates in php</title>
		<link>http://www.fabiodemelo.com/php/difference-between-two-dates/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=difference-between-two-dates</link>
		<comments>http://www.fabiodemelo.com/php/difference-between-two-dates/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 22:52:59 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[Code Examples]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=190</guid>
		<description><![CDATA[Here is an example on how to check to difference bewteen two dates in using PHP. &#60;? $now = time&#40;&#41;; $week = time&#40;&#41;+60*60*24*7; $diff = $week-$now; echo $diff/&#40;60*60*24&#41;.&#34; days &#34;; // 7 Days echo $diff/&#40;60*60&#41;.&#34; hours &#34;; // 168 hours &#8230; <a href="http://www.fabiodemelo.com/php/difference-between-two-dates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is an example on how to check to difference bewteen two dates in using PHP.</p>

<div class="wp_code"><div class="pre"><pre class="php" style="font-family:'Times New Roman',Garamond, Times;"><span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #000088;">$now</span> <span style="color: #339933;">=</span> <span style="color: #990000;">time</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$week</span> <span style="color: #339933;">=</span> <span style="color: #990000;">time</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">24</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">7</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$diff</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$week</span><span style="color: #339933;">-</span><span style="color: #000088;">$now</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$diff</span><span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">24</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; days
&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// 7 Days</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$diff</span><span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; hours
&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// 168 hours</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$diff</span><span style="color: #339933;">/</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; minutes
&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// 10080 minutes</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/difference-between-two-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP OOP Lesson #7</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-7</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-7/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:20:29 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=174</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-7.flv" length="7716631" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #6</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-6</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-6/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:19:12 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=170</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-6.flv" length="4831634" type="video/x-flv" />
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-6.flv" length="4831634" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #5</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-5</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-5/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:17:44 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=166</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-5.flv" length="6805177" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #4</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-4</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-4/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:16:43 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=162</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-4.flv" length="4831634" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #3</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-3</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-3/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:02:58 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=159</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-3.flv" length="2882981" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #2</title>
		<link>http://www.fabiodemelo.com/php/php-oop-lesson-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-2</link>
		<comments>http://www.fabiodemelo.com/php/php-oop-lesson-2/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:02:16 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=156</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-oop-lesson-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-2.flv" length="6470227" type="video/x-flv" />
		</item>
		<item>
		<title>PHP OOP Lesson #1.</title>
		<link>http://www.fabiodemelo.com/php/php-training/php-oop-lesson-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-oop-lesson-1</link>
		<comments>http://www.fabiodemelo.com/php/php-training/php-oop-lesson-1/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 05:44:54 +0000</pubDate>
		<dc:creator>fabio</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php training]]></category>

		<guid isPermaLink="false">http://www.fabiodemelo.com/?p=150</guid>
		<description><![CDATA[A good friend of my called the other night looking a some PHP OOP training.  So here it is:]]></description>
			<content:encoded><![CDATA[<p>A good friend of my called the other night looking a some PHP OOP training.  So here it is:</p>
		
		<object type="application/x-shockwave-flash" data="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" width="" height="">
			<param name="movie" value="http://www.fabiodemelo.com/wp-content/plugins/wp-os-flv/flash/player_flv_maxi.swf" />
			<param name="allowFullScreen" value="true" />
			<param name="FlashVars" value="" />
		</object>		
		
]]></content:encoded>
			<wfw:commentRss>http://www.fabiodemelo.com/php/php-training/php-oop-lesson-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.fabiodemelo.com/wp-content/uploads/2010/11/lesson-1.flv" length="4831634" type="video/x-flv" />
		</item>
	</channel>
</rss>

