<?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: Write your own PHP MVC Framework (Part 1)</title>
	<atom:link href="http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/</link>
	<description>on web development</description>
	<pubDate>Thu, 29 Jul 2010 19:27:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: visitor</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6477</link>
		<dc:creator>visitor</dc:creator>
		<pubDate>Sat, 17 Jul 2010 19:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6477</guid>
		<description>Hello
 thanks for this tutorial please can someone help me, what i have to add the extention '.php' to view the result
example: href="../../items/viewall.php" or here :  
thanks</description>
		<content:encoded><![CDATA[<p>Hello<br />
 thanks for this tutorial please can someone help me, what i have to add the extention &#8216;.php&#8217; to view the result<br />
example: href=&#8221;../../items/viewall.php&#8221; or here :<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gav</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6285</link>
		<dc:creator>Gav</dc:creator>
		<pubDate>Fri, 25 Jun 2010 00:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6285</guid>
		<description>Great tutorial. Thanks very much!

Further to comment by Bill Hernandez, as of PHP 5.3 you will now get an error (Deprecated: Assigning the return value of new by reference is deprecated). So you now need to remove the ampersands altogether in controller.class.php:

15. $this-&gt;$model = new $model;
16. $this-&gt;_template = new Template($controller,$action);</description>
		<content:encoded><![CDATA[<p>Great tutorial. Thanks very much!</p>
<p>Further to comment by Bill Hernandez, as of PHP 5.3 you will now get an error (Deprecated: Assigning the return value of new by reference is deprecated). So you now need to remove the ampersands altogether in controller.class.php:</p>
<p>15. $this-&gt;$model = new $model;<br />
16. $this-&gt;_template = new Template($controller,$action);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6251</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Mon, 21 Jun 2010 03:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6251</guid>
		<description>Sexy !!! very good and informative</description>
		<content:encoded><![CDATA[<p>Sexy !!! very good and informative</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6214</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Wed, 16 Jun 2010 12:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6214</guid>
		<description>coolllll but please can u tell how to integrate smarty in this</description>
		<content:encoded><![CDATA[<p>coolllll but please can u tell how to integrate smarty in this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6211</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 16 Jun 2010 11:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6211</guid>
		<description>** this is the 3rd paragraph of the post above**

I have placed the stylesheet.css in the public/css folder and in the header.php file i have replaced all the style data with  link href /css/stylesheet.css</description>
		<content:encoded><![CDATA[<p>** this is the 3rd paragraph of the post above**</p>
<p>I have placed the stylesheet.css in the public/css folder and in the header.php file i have replaced all the style data with  link href /css/stylesheet.css</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6210</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 16 Jun 2010 11:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6210</guid>
		<description>First of all thanks Anant, iv been wanting to play around with a framework on php for a while but they have always been too complicated to break down and understand.  This was very helpful.

However, Im having trouble taking the style data out of the header.php and using it in a stylesheet.css.

I have placed the stylesheet.css in the public/css folder and in the header.php file i have replaced all the  data with 

This has not been successful though, please can someone help me out.  i would greatly appreciate it.  

Thanks,
-Ben</description>
		<content:encoded><![CDATA[<p>First of all thanks Anant, iv been wanting to play around with a framework on php for a while but they have always been too complicated to break down and understand.  This was very helpful.</p>
<p>However, Im having trouble taking the style data out of the header.php and using it in a stylesheet.css.</p>
<p>I have placed the stylesheet.css in the public/css folder and in the header.php file i have replaced all the  data with </p>
<p>This has not been successful though, please can someone help me out.  i would greatly appreciate it.  </p>
<p>Thanks,<br />
-Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Drinnan</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-6098</link>
		<dc:creator>Peter Drinnan</dc:creator>
		<pubDate>Sat, 05 Jun 2010 17:33:47 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-6098</guid>
		<description>I have to agree that fully understanding an MVC framework before using or deciding on which one to use is really important. It is like buying a house. If you don't do a lot of reading and learn a little about how they are built, you may end up living (working) in misery.</description>
		<content:encoded><![CDATA[<p>I have to agree that fully understanding an MVC framework before using or deciding on which one to use is really important. It is like buying a house. If you don&#8217;t do a lot of reading and learn a little about how they are built, you may end up living (working) in misery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaban Mohamed</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-5853</link>
		<dc:creator>Shaban Mohamed</dc:creator>
		<pubDate>Wed, 19 May 2010 10:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-5853</guid>
		<description>Hi all
you can solve this problem by
open this file library/shared.php and remove line 88 and 90

Good Luck</description>
		<content:encoded><![CDATA[<p>Hi all<br />
you can solve this problem by<br />
open this file library/shared.php and remove line 88 and 90</p>
<p>Good Luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaban Mohamed</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-5852</link>
		<dc:creator>Shaban Mohamed</dc:creator>
		<pubDate>Wed, 19 May 2010 09:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-5852</guid>
		<description>Hi
can you solve this problem

Notice: Undefined index: _SESSION in D:\AppServ\www\todo\library\shared.php on line 38

Warning: Invalid argument supplied for foreach() in D:\AppServ\www\todo\library\shared.php on line 38

Notice: Undefined index: url in D:\AppServ\www\todo\library\shared.php on line 39

Notice: Undefined index: PATHEXT in D:\AppServ\www\todo\library\shared.php on line 39

Notice: Undefined index: SystemRoot in D:\AppServ\www\todo\library\shared.php on line 39

Notice: Undefined offset: 0 in D:\AppServ\www\todo\library\shared.php on line 57

Fatal error: Class '' not found in D:\AppServ\www\todo\library\controller.class.php on line 15
Thank</description>
		<content:encoded><![CDATA[<p>Hi<br />
can you solve this problem</p>
<p>Notice: Undefined index: _SESSION in D:\AppServ\www\todo\library\shared.php on line 38</p>
<p>Warning: Invalid argument supplied for foreach() in D:\AppServ\www\todo\library\shared.php on line 38</p>
<p>Notice: Undefined index: url in D:\AppServ\www\todo\library\shared.php on line 39</p>
<p>Notice: Undefined index: PATHEXT in D:\AppServ\www\todo\library\shared.php on line 39</p>
<p>Notice: Undefined index: SystemRoot in D:\AppServ\www\todo\library\shared.php on line 39</p>
<p>Notice: Undefined offset: 0 in D:\AppServ\www\todo\library\shared.php on line 57</p>
<p>Fatal error: Class &#8221; not found in D:\AppServ\www\todo\library\controller.class.php on line 15<br />
Thank</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pols</title>
		<link>http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/comment-page-2/#comment-5640</link>
		<dc:creator>pols</dc:creator>
		<pubDate>Tue, 04 May 2010 01:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://anantgarg.com/?p=69#comment-5640</guid>
		<description>thanks for your effort in doing the tutorial, I really appreciate it.. Because I'm planning to create my own framework.. I learned a lot from this tutorials..</description>
		<content:encoded><![CDATA[<p>thanks for your effort in doing the tutorial, I really appreciate it.. Because I&#8217;m planning to create my own framework.. I learned a lot from this tutorials..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
