<?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>framework &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/framework/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>Redirecting with Zend Framework</title>
		<link>/2009/11/27/redirecting-with-zend-framework/</link>
		<comments>/2009/11/27/redirecting-with-zend-framework/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 07:43:04 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[gotoroute]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[redirector]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">/?p=814</guid>
		<description><![CDATA[Many of the web applications need to be redirected to some given URI sooner or later. In that scenario like redirecting to the profile page after login, which is very common to almost every app, you need to change the URI of the browser after the login form is validated. You can make this by &#8230; <a href="/2009/11/27/redirecting-with-zend-framework/" class="more-link">Continue reading <span class="screen-reader-text">Redirecting with Zend Framework</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/12/20/redirecting-with-zend-framework-part-2/" rel="bookmark" title="Redirecting with Zend Framework &#8211; part 2">Redirecting with Zend Framework &#8211; part 2 </a></li>
<li><a href="/2009/04/21/zend-framework-disable-zend-layout/" rel="bookmark" title="Zend Framework &#8211; Disable Zend Layout">Zend Framework &#8211; Disable Zend Layout </a></li>
<li><a href="/2010/06/16/zend-examples-get-parameters-default-value/" rel="bookmark" title="Zend Examples: GET Parameters Default Value">Zend Examples: GET Parameters Default Value </a></li>
<li><a href="/2010/04/21/setting-a-zend-framework-_redirect-referer/" rel="bookmark" title="Setting a Zend Framework _redirect Referer">Setting a Zend Framework _redirect Referer </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Many of the web applications need to be redirected to some given URI sooner or later. In that scenario like redirecting to the profile page after login, which is very common to almost every app, you need to change the URI of the browser after the login form is validated. You can make this by simply using the built in header function in PHP. In other terms the most popular method to redirect in Zend Framework, don&#8217;t know why, but this is the _forward method of the controller actions:</p>
<blockquote>
<pre>$this-&gt;_forward('action-name');</pre>
</blockquote>
<p>The problem here is that thus you get to the given action name, or controller/action but the URI of the browser stays as it is from the caller action.</p>
<p>If you&#8217;d like to redirect, like the header function will do it you should use the following construction:</p>
<blockquote>
<pre>$this-&gt;_helper-&gt;redirector-&gt;gotoRoute(array(
   'controller'=&gt; 'contrlname',
   'action' =&gt;'actionname'));</pre>
</blockquote>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/12/20/redirecting-with-zend-framework-part-2/" rel="bookmark" title="Redirecting with Zend Framework &#8211; part 2">Redirecting with Zend Framework &#8211; part 2 </a></li>
<li><a href="/2009/04/21/zend-framework-disable-zend-layout/" rel="bookmark" title="Zend Framework &#8211; Disable Zend Layout">Zend Framework &#8211; Disable Zend Layout </a></li>
<li><a href="/2010/06/16/zend-examples-get-parameters-default-value/" rel="bookmark" title="Zend Examples: GET Parameters Default Value">Zend Examples: GET Parameters Default Value </a></li>
<li><a href="/2010/04/21/setting-a-zend-framework-_redirect-referer/" rel="bookmark" title="Setting a Zend Framework _redirect Referer">Setting a Zend Framework _redirect Referer </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/11/27/redirecting-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to create a PHP Framework?</title>
		<link>/2008/09/17/how-to-create-a-php-framework/</link>
		<comments>/2008/09/17/how-to-create-a-php-framework/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 07:33:01 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[quick start]]></category>

		<guid isPermaLink="false">/?p=119</guid>
		<description><![CDATA[A very good post on how a PHP framework can be build I found here. Everyone should be familiar with the basic principles described in the article, so don&#8217;t hesitate to read it carefully.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2008/08/04/why-you-should-learn-a-framework/" rel="bookmark" title="Why should we learn a framework?">Why should we learn a framework? </a></li>
<li><a href="/2009/02/12/choosing-a-php-ide/" rel="bookmark" title="Choosing a PHP IDE">Choosing a PHP IDE </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2010/04/09/secure-forms-with-zend-framework/" rel="bookmark" title="Secure Forms with Zend Framework">Secure Forms with Zend Framework </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>A very good post on how a PHP framework can be build I found <a href="http://nettuts.com/php/creating-a-php5-framework-part-1/">here</a>. Everyone should be familiar with the basic principles described in the article, so don&#8217;t hesitate to read it carefully.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2008/08/04/why-you-should-learn-a-framework/" rel="bookmark" title="Why should we learn a framework?">Why should we learn a framework? </a></li>
<li><a href="/2009/02/12/choosing-a-php-ide/" rel="bookmark" title="Choosing a PHP IDE">Choosing a PHP IDE </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2010/04/09/secure-forms-with-zend-framework/" rel="bookmark" title="Secure Forms with Zend Framework">Secure Forms with Zend Framework </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2008/09/17/how-to-create-a-php-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zend Framework &#8211; quick tutorial (part 2)</title>
		<link>/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/</link>
		<comments>/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 10:25:38 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[__autoload]]></category>
		<category><![CDATA[bootstrap.php]]></category>
		<category><![CDATA[directory layout]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[front controller]]></category>
		<category><![CDATA[quick start]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">/?p=55</guid>
		<description><![CDATA[Directory Layout and Bootstrapping. When someone starts with the learning of a framework, first he begins to read various articles to understand the basic rules to work with. There are a lot of tutorials how exactly to start, and there is also an official quick start guide, but beside this there are too much advices &#8230; <a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" class="more-link">Continue reading <span class="screen-reader-text">Zend Framework &#8211; quick tutorial (part 2)</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/06/19/zend-framework-quick-tutorial-part-3-front-controller-plugins/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins">Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins </a></li>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
<li><a href="/2010/08/06/setting-up-zend-framework-with-modules/" rel="bookmark" title="Setting Up Zend Framework with Modules">Setting Up Zend Framework with Modules </a></li>
<li><a href="/2010/07/21/setting-up-global-cache-in-zend-framework/" rel="bookmark" title="Setting Up Global Cache in Zend Framework">Setting Up Global Cache in Zend Framework </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>Directory Layout and Bootstrapping.<br />
<a title="part 1 - introduction" href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/"></a></h2>
<p>When someone starts with the learning of a framework, first he begins to read various articles to understand the basic rules to work with.</p>
<p>There are a lot of tutorials how exactly to start, and there is also an official quick start guide, but beside this there are too much advices how should you directory layout look like.</p>
<p>For me the following directory layout is working well. I don&#8217;t remember exactly where I&#8217;ve found it, but I think many people use it.</p>
<ul>
<li>application
<ul>
<li>admin</li>
<li>controllers</li>
<li>models</li>
<li>views</li>
</ul>
</li>
<li>content
<ul>
<li>controllers</li>
<li>models</li>
<li>views</li>
</ul>
</li>
<li>layouts</li>
<li>bootstrap.php</li>
<li>config.ini</li>
<li>library</li>
<li>Zend</li>
<li>public</li>
<li>index.php</li>
</ul>
<p>Almost half of the sources &#8220;how to start&#8221; recommend all of the initialization should be in index.php in the public folder. In fact all the logic of the public/private folders is that we don&#8217;t like to show anything on the web, and that&#8217;s why index.php contains only the following peace of code (it&#8217;s recommended to leave the file open from the ?&gt; closing tag):<br />
<code>&lt;?php<br />
require '../application/bootstrap.php';</code></p>
<p>Anything else, all the initialization is in bootstrap.php:</p>
<p>error_reporting (E_ALL | E_STRICT);</p>
<p>ini_set (&#8216;display_startup_errors&#8217;, 1);<br />
ini_set (&#8216;display_errors&#8217;, 1);</p>
<p>set_include_path (&#8216;../library&#8217; . PATH_SEPARATOR . get_include_path());</p>
<p>require_once &#8220;Zend/Loader.php&#8221;;<br />
Zend_Loader::registerAutoload();</p>
<p>$front = Zend_Controller_Front::getInstance();</p>
<p>$front-&gt;throwExceptions(true);</p>
<p>$front-&gt;setControllerDirectory(array(&#8216;default&#8217; =&gt; &#8216;../application/content/controllers&#8217;,<br />
&#8216;admin&#8217;   =&gt; &#8216;../application/admin/controllers&#8217;));</p>
<p>$front-&gt;dispatch();<br />
We set the error reporting to be ON, which si good when you develop any application and to collect all error messages. Than add the <em>library </em>folder in the include path with that line of code:</p>
<blockquote><p>set_include_path(&#8216;../library&#8217; . PATH_SEPARATOR . get_include_path());</p></blockquote>
<p>Next step is to start the __autoload functionality built in Zend Framework:</p>
<blockquote><p>require_once &#8220;Zend/Loader.php&#8221;;<br />
Zend_Loader::registerAutoload();</p></blockquote>
<p>Finally start the front controller which implements the singleton pattern and point to the two main directories &#8211; admin and content. I used them for administration panel and front end, but you can used as many as you application needs:<br />
<code>$front-&gt;setControllerDirectory(array('default' =&gt; '../application/content/controllers',<br />
'admin'   =&gt; '../application/admin/controllers'));</code></p>
<h3><span style="color: #800000;"><span style="text-decoration: underline;">Related Links</span></span></h3>
<p><a title="Zend_Db tutorial" href="/2009/03/19/zend-framework-zend-db-tutorial/" target="_self"><strong>Zend_Db tutorial</strong></a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/06/19/zend-framework-quick-tutorial-part-3-front-controller-plugins/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins">Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins </a></li>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
<li><a href="/2010/08/06/setting-up-zend-framework-with-modules/" rel="bookmark" title="Setting Up Zend Framework with Modules">Setting Up Zend Framework with Modules </a></li>
<li><a href="/2010/07/21/setting-up-global-cache-in-zend-framework/" rel="bookmark" title="Setting Up Global Cache in Zend Framework">Setting Up Global Cache in Zend Framework </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Zend Framework &#8211; quick tutorial (part 1)</title>
		<link>/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/</link>
		<comments>/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 20:36:45 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[simfony]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">/?p=45</guid>
		<description><![CDATA[Introduction I&#8217;ve decided to write a quick tutorial about the way I work with Zend Framework. The problems I have, and the way I get through their solution. I think it will be useful for anyone common with the OOP design patterns and PHP programming, who wants to start with Zend Framework. Introduction In my &#8230; <a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" class="more-link">Continue reading <span class="screen-reader-text">Zend Framework &#8211; quick tutorial (part 1)</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2009/06/19/zend-framework-quick-tutorial-part-3-front-controller-plugins/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins">Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins </a></li>
<li><a href="/2008/07/31/how-to-start-with-zend-framework/" rel="bookmark" title="How to start with Zend Framework">How to start with Zend Framework </a></li>
<li><a href="/2010/01/29/cool-tutorial-about-zend_paginator/" rel="bookmark" title="Cool tutorial about Zend_Paginator">Cool tutorial about Zend_Paginator </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Introduction</p>
<p>I&#8217;ve decided to write a quick tutorial about the way I work with <a href="http://framework.zend.com/">Zend Framework</a>. The problems I have, and the way I get through their solution. I think it will be useful for anyone common with the OOP design patterns and PHP programming, who wants to start with Zend Framework.</p>
<p><em>Introduction</em></p>
<p>In my practice as programmer I&#8217;ve noticed, that almost 90% of the sites we&#8217;ve build, have the same problems to solve and similar milestones.</p>
<p>At first why we need a framework? Because most of the programmers start from the beginning with the design of abstraction layers, and the time for the design is absolutely wasted when there are already that kind of abstraction given from almost every framework. Many of them have a big community of programmers around and cover a large scale of programming issues.</p>
<p>The obvious conclusion here is that there are not much sense in loosing that time. In the other part learning and using a framework with the scale of Zend Framework also requires a lot of time, but there&#8217;s no need of learning every part of it before you really start. That can happen later on.</p>
<p>That&#8217;s what happened in my case. Before two years I&#8217;ve designed and build my own framework, which does a lot of good work to organize the working process in the company I worked than. Than I start using a content management systems (CMS), mainly <a href="http://joomla.org/">Joomla!</a>, but recently noticed, that our clients don&#8217;t need that many functionality as Joomla! offers. They did not create a &#8220;menu&#8221; or add &#8220;template&#8221;.</p>
<p>With the idea to create web systems with my own CMS I decided to use Zend Framework. Not just like that, but mostely because the other PHP frameworks like <a href="http://cakephp.org/">CakePHP</a> or <a href="http://www.symfony-project.org/">Symfony</a> looked to me more like CMS, something that I don&#8217;t want, because I&#8217;d like to build my own steping on the base of framework which gives those abstraction layers like db connection, acl etc.</p>
<p>With this tutorial I&#8217;ll describe the path I passed trough using the Zend Framework, and how it can be basicaly used.</p>
<p><a title="directory layout and bootstrapping" href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/">part 2 &#8211; directory layout and bootstrapping</a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2009/06/19/zend-framework-quick-tutorial-part-3-front-controller-plugins/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins">Zend Framework &#8211; quick tutorial (part 3) &#8211; front controller plugins </a></li>
<li><a href="/2008/07/31/how-to-start-with-zend-framework/" rel="bookmark" title="How to start with Zend Framework">How to start with Zend Framework </a></li>
<li><a href="/2010/01/29/cool-tutorial-about-zend_paginator/" rel="bookmark" title="Cool tutorial about Zend_Paginator">Cool tutorial about Zend_Paginator </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why should we learn a framework?</title>
		<link>/2008/08/04/why-you-should-learn-a-framework/</link>
		<comments>/2008/08/04/why-you-should-learn-a-framework/#respond</comments>
		<pubDate>Mon, 04 Aug 2008 08:21:17 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[learn]]></category>

		<guid isPermaLink="false">/?p=27</guid>
		<description><![CDATA[If anybody still asks should we learn a framework, I recommend him to read the recent post of Ian P. Christian. Before you start, however there are no recommendation there about which framework you&#8217;ve to choose, but he gives a good examples and advices why there&#8217;s no need to apply common design patters over and &#8230; <a href="/2008/08/04/why-you-should-learn-a-framework/" class="more-link">Continue reading <span class="screen-reader-text">Why should we learn a framework?</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2008/09/17/how-to-create-a-php-framework/" rel="bookmark" title="How to create a PHP Framework?">How to create a PHP Framework? </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2008/07/31/how-to-start-with-zend-framework/" rel="bookmark" title="How to start with Zend Framework">How to start with Zend Framework </a></li>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>If anybody still asks should we learn a framework, I recommend him to read the recent <a href="http://pookey.co.uk/blog/archives/56-Should-you-learn-a-framework.html">post</a><br />
of Ian P. Christian.</p>
<p>Before you start, however there are no recommendation there about which framework you&#8217;ve to choose, but he gives a good examples and advices why there&#8217;s no need to apply common design patters over and over again.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2008/09/17/how-to-create-a-php-framework/" rel="bookmark" title="How to create a PHP Framework?">How to create a PHP Framework? </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2008/07/31/how-to-start-with-zend-framework/" rel="bookmark" title="How to start with Zend Framework">How to start with Zend Framework </a></li>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2008/08/04/why-you-should-learn-a-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start with Zend Framework</title>
		<link>/2008/07/31/how-to-start-with-zend-framework/</link>
		<comments>/2008/07/31/how-to-start-with-zend-framework/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 08:03:15 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[starting]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">/?p=11</guid>
		<description><![CDATA[Because there are too many articles about how to start with Zend Framework, today I saw one, which was interesting to me. And there is a cool .pdf describing the sample beggining of a Zend Framework project. If someone needs to see it &#8211; there it is free for use. Well at least it describes &#8230; <a href="/2008/07/31/how-to-start-with-zend-framework/" class="more-link">Continue reading <span class="screen-reader-text">How to start with Zend Framework</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2010/06/21/redirect-with-zend-framework/" rel="bookmark" title="Redirect with Zend Framework">Redirect with Zend Framework </a></li>
<li><a href="/2010/03/25/send-mail-with-zend-framework/" rel="bookmark" title="Send Mail with Zend Framework">Send Mail with Zend Framework </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Because there are too many articles about how to start with Zend Framework, today I saw <a href="http://ruben.savanne.be/articles/integrating-zend-framework-and-doctrine">one</a>, which was interesting to me. And there is a cool .pdf describing the sample beggining of a <a href="http://framework.zend.com/">Zend Framework</a> project. If someone needs to see it &#8211; there it is free for use.</p>
<p>Well at least it describes how to integrate Doctrine with ZF.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2008/08/05/zend-framework-quick-tutorial-part-1-introduction/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 1)">Zend Framework &#8211; quick tutorial (part 1) </a></li>
<li><a href="/2008/08/11/zend-framework-quick-tutorial-part-2-directory-layout-and-bootstrapping/" rel="bookmark" title="Zend Framework &#8211; quick tutorial (part 2)">Zend Framework &#8211; quick tutorial (part 2) </a></li>
<li><a href="/2010/06/21/redirect-with-zend-framework/" rel="bookmark" title="Redirect with Zend Framework">Redirect with Zend Framework </a></li>
<li><a href="/2010/03/25/send-mail-with-zend-framework/" rel="bookmark" title="Send Mail with Zend Framework">Send Mail with Zend Framework </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2008/07/31/how-to-start-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
