<?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>Comentários sobre: CRUD Básico com CodeIgniter 1.7.1</title>
	<atom:link href="http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/</link>
	<description>Produtividade, processos de desenvolvimento de software e PHP.</description>
	<lastBuildDate>Thu, 15 Jul 2010 22:39:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Bruce</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-428</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Wed, 19 May 2010 11:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-428</guid>
		<description>Nice example!

Is it possible that set_value() doesn&#039;t return a value when validation rules are setup in a config file?

I tried your example but instead of defining the rules inside the controller, I defined them in a config file, using the controller/method auto-detection method. (as explained in the CI 1.7.1 userguide &gt; Form Validation)</description>
		<content:encoded><![CDATA[<p>Nice example!</p>
<p>Is it possible that set_value() doesn&#8217;t return a value when validation rules are setup in a config file?</p>
<p>I tried your example but instead of defining the rules inside the controller, I defined them in a config file, using the controller/method auto-detection method. (as explained in the CI 1.7.1 userguide &gt; Form Validation)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Robertson Freitas</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-19</link>
		<dc:creator>Robertson Freitas</dc:creator>
		<pubDate>Mon, 21 Sep 2009 02:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-19</guid>
		<description>Joris,

You&#039;re right about the use of set_value. There is a new version of this example using set_value and CI 1.7.2.

Thanks for the comments.</description>
		<content:encoded><![CDATA[<p>Joris,</p>
<p>You&#8217;re right about the use of set_value. There is a new version of this example using set_value and CI 1.7.2.</p>
<p>Thanks for the comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Robertson Freitas</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-18</link>
		<dc:creator>Robertson Freitas</dc:creator>
		<pubDate>Mon, 21 Sep 2009 02:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-18</guid>
		<description>Henrique Gogó,

É questão de tempo. Nas últimas semanas tenho visto muitos tutoriais e exemplos de CodeIgniter pipocando por aí.

Sobre a qualidade dos códigos, os novos frameworks estão educando os programadores PHP. Isso também está melhorando.

Um abraço.</description>
		<content:encoded><![CDATA[<p>Henrique Gogó,</p>
<p>É questão de tempo. Nas últimas semanas tenho visto muitos tutoriais e exemplos de CodeIgniter pipocando por aí.</p>
<p>Sobre a qualidade dos códigos, os novos frameworks estão educando os programadores PHP. Isso também está melhorando.</p>
<p>Um abraço.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Robertson Freitas</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-17</link>
		<dc:creator>Robertson Freitas</dc:creator>
		<pubDate>Mon, 21 Sep 2009 01:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-17</guid>
		<description>Valeu, Adail.</description>
		<content:encoded><![CDATA[<p>Valeu, Adail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Robertson Freitas » CRUD Básico com CodeIgniter 1.7.2</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-15</link>
		<dc:creator>Robertson Freitas » CRUD Básico com CodeIgniter 1.7.2</dc:creator>
		<pubDate>Mon, 21 Sep 2009 01:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-15</guid>
		<description>[...] Fiz algumas melhorias no código do post anterior: [...]</description>
		<content:encoded><![CDATA[<p>[...] Fiz algumas melhorias no código do post anterior: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Joris</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-6</link>
		<dc:creator>Joris</dc:creator>
		<pubDate>Tue, 25 Aug 2009 18:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-6</guid>
		<description>correction, it does work with a config file but I could only make it work if I called the config file like this:

$this-&gt;form_validation-&gt;run(&#039;save&#039;)

Automatic rule detection ( $config = array(&#039;user/save&#039; = &gt;array(...)) didn&#039;t work. I think it&#039;s because the form doesn&#039;t post directly to the controller method that does the validation.</description>
		<content:encoded><![CDATA[<p>correction, it does work with a config file but I could only make it work if I called the config file like this:</p>
<p>$this-&gt;form_validation-&gt;run(&#8217;save&#8217;)</p>
<p>Automatic rule detection ( $config = array(&#8216;user/save&#8217; = &gt;array(&#8230;)) didn&#8217;t work. I think it&#8217;s because the form doesn&#8217;t post directly to the controller method that does the validation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Joris</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-5</link>
		<dc:creator>Joris</dc:creator>
		<pubDate>Tue, 25 Aug 2009 17:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-5</guid>
		<description>Nice example!

Is it possible that set_value() doesn&#039;t return a value when validation rules are setup in a config file?

I tried your example but instead of defining the rules inside the controller, I defined them in a config file, using the controller/method auto-detection method. (as explained in the CI 1.7.1 userguide &gt; Form Validation)</description>
		<content:encoded><![CDATA[<p>Nice example!</p>
<p>Is it possible that set_value() doesn&#8217;t return a value when validation rules are setup in a config file?</p>
<p>I tried your example but instead of defining the rules inside the controller, I defined them in a config file, using the controller/method auto-detection method. (as explained in the CI 1.7.1 userguide &gt; Form Validation)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Henrique Gogó</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-4</link>
		<dc:creator>Henrique Gogó</dc:creator>
		<pubDate>Mon, 24 Aug 2009 23:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-4</guid>
		<description>Realmente, Bob, o CodeIgniter carece de exemplos &quot;passo-a-passo&quot; (os chamado cookbooks) da coisa funcionando mesmo.

Apesar da documentação ser muito boa, você fica ainda dependente da comunidade para esclarecer conceitos básicos simples do FrameWork. Seu artigo vem a calhar muito bem, pois engloba um CRUD básico e está muito bem descrito.

Se todos que aprendessem PHP já começassem utilizando um FrameWork como o CodeIgniter, com certeza a &quot;má fama&quot; do PHP como linguagem de &quot;novato&quot; daria lugar ao que ela realmente é: uma linguagem poderosa e de fácil manutenção.</description>
		<content:encoded><![CDATA[<p>Realmente, Bob, o CodeIgniter carece de exemplos &#8220;passo-a-passo&#8221; (os chamado cookbooks) da coisa funcionando mesmo.</p>
<p>Apesar da documentação ser muito boa, você fica ainda dependente da comunidade para esclarecer conceitos básicos simples do FrameWork. Seu artigo vem a calhar muito bem, pois engloba um CRUD básico e está muito bem descrito.</p>
<p>Se todos que aprendessem PHP já começassem utilizando um FrameWork como o CodeIgniter, com certeza a &#8220;má fama&#8221; do PHP como linguagem de &#8220;novato&#8221; daria lugar ao que ela realmente é: uma linguagem poderosa e de fácil manutenção.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Ahdail Netto</title>
		<link>http://blog.robertsonfreitas.com/2009/08/24/crud-basico-com-codeigniter/comment-page-1/#comment-3</link>
		<dc:creator>Ahdail Netto</dc:creator>
		<pubDate>Mon, 24 Aug 2009 17:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.robertsonfreitas.com/?p=72#comment-3</guid>
		<description>Muito legal Bob este post... se garantiu. Bem didático e objetivo.</description>
		<content:encoded><![CDATA[<p>Muito legal Bob este post&#8230; se garantiu. Bem didático e objetivo.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
