<?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 on: Kohana PHP Tuturial &#8211; Part III</title>
	<atom:link href="http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/</link>
	<description>All Things Deal Oriented</description>
	<lastBuildDate>Thu, 12 Nov 2009 14:04:11 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-344</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Fri, 25 Sep 2009 00:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-344</guid>
		<description>@Isaiah: I just was playing around and yes, you need to call the parent&#039;s constructor via the extended class or you can&#039;t access anything.. hmph.</description>
		<content:encoded><![CDATA[<p>@Isaiah: I just was playing around and yes, you need to call the parent&#8217;s constructor via the extended class or you can&#8217;t access anything.. hmph.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-307</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Fri, 04 Sep 2009 15:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-307</guid>
		<description>crazyJAT: I was just doing something quick in that example.</description>
		<content:encoded><![CDATA[<p>crazyJAT: I was just doing something quick in that example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crazyJAT</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-301</link>
		<dc:creator>crazyJAT</dc:creator>
		<pubDate>Tue, 01 Sep 2009 03:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-301</guid>
		<description>You could really simplify your code quite a bit if you were to use css standard coding techniques.  You could achieve the same effect with:

&lt;form method=&quot;POST&quot; action=&quot;hello/addpost/&quot;&gt;
  Title
  Post
  
  
  
</description>
		<content:encoded><![CDATA[<p>You could really simplify your code quite a bit if you were to use css standard coding techniques.  You could achieve the same effect with:</p>
<p>&lt;form method=&quot;POST&quot; action=&quot;hello/addpost/&#8221;&gt;<br />
  Title<br />
  Post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-298</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Fri, 28 Aug 2009 20:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-298</guid>
		<description>I will be waiting for Kohana 3 to be released and I&#039;ll re do the series.</description>
		<content:encoded><![CDATA[<p>I will be waiting for Kohana 3 to be released and I&#8217;ll re do the series.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-165</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-165</guid>
		<description>Good catch seralf! I will be going further in these tutorials.</description>
		<content:encoded><![CDATA[<p>Good catch seralf! I will be going further in these tutorials.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seralf</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-164</link>
		<dc:creator>seralf</dc:creator>
		<pubDate>Sun, 21 Jun 2009 09:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-164</guid>
		<description>Hi
testing the code i need to put a little modification on &#039;hello.php&#039; controller, in order to avoid error messages:

public function addpost()
     {
        // Load the models
        $post  = new Post_Model();
        if (isset($_POST[&#039;title&#039;]) &amp;&amp; isset($_POST[&#039;post&#039;]))
            $post-&gt;addPost($_POST[&#039;title&#039;], $_POST[&#039;post&#039;]);
        else
            echo(&quot;form not valid or incomplete!&quot;);
        url::redirect(&#039;hello&#039;);
     }
----
thanks for the articles: they are very simple and clear, i hope you go further...
:-)

Alfredo</description>
		<content:encoded><![CDATA[<p>Hi<br />
testing the code i need to put a little modification on &#8216;hello.php&#8217; controller, in order to avoid error messages:</p>
<p>public function addpost()<br />
     {<br />
        // Load the models<br />
        $post  = new Post_Model();<br />
        if (isset($_POST['title']) &amp;&amp; isset($_POST['post']))<br />
            $post-&gt;addPost($_POST['title'], $_POST['post']);<br />
        else<br />
            echo(&#8221;form not valid or incomplete!&#8221;);<br />
        url::redirect(&#8217;hello&#8217;);<br />
     }<br />
&#8212;-<br />
thanks for the articles: they are very simple and clear, i hope you go further&#8230;<br />
 <img src='http://www.dealtaker.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Alfredo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-163</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Sat, 20 Jun 2009 21:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-163</guid>
		<description>I&#039;ll make my next tutorial about the DB methods instead of the helper and libraries. =)

Ah, I did not know that it would auto call that. Awesome. Learn something new the other day.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll make my next tutorial about the DB methods instead of the helper and libraries. =)</p>
<p>Ah, I did not know that it would auto call that. Awesome. Learn something new the other day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Isaiah</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-162</link>
		<dc:creator>Isaiah</dc:creator>
		<pubDate>Sat, 20 Jun 2009 15:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-162</guid>
		<description>If you want full control over the query it would be better (to show off more of Kohana&#039;s features) to use Kohana&#039;s built-in query binding instead of sprintf/manually calling the escape function.

In php5 the parent constructor will automatically be used if your class doesn&#039;t supply one. So you can delete all the __construct() stuff and $this-&gt;db will still work.</description>
		<content:encoded><![CDATA[<p>If you want full control over the query it would be better (to show off more of Kohana&#8217;s features) to use Kohana&#8217;s built-in query binding instead of sprintf/manually calling the escape function.</p>
<p>In php5 the parent constructor will automatically be used if your class doesn&#8217;t supply one. So you can delete all the __construct() stuff and $this-&gt;db will still work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-161</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Sat, 20 Jun 2009 05:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-161</guid>
		<description>As for the construct, I would want access to the DB stuff to all the method. Of course I could have initiated a new object of the DB library to get what I needed. But what would I lose by doing that instead of calling the parent?</description>
		<content:encoded><![CDATA[<p>As for the construct, I would want access to the DB stuff to all the method. Of course I could have initiated a new object of the DB library to get what I needed. But what would I lose by doing that instead of calling the parent?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellisgl</title>
		<link>http://www.dealtaker.com/blog/2009/06/19/kohana-php-tuturial-part-iii/comment-page-1/#comment-160</link>
		<dc:creator>ellisgl</dc:creator>
		<pubDate>Fri, 19 Jun 2009 18:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.dealtaker.com/blog/?p=1013#comment-160</guid>
		<description>Ok I fixed it!</description>
		<content:encoded><![CDATA[<p>Ok I fixed it!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
