<?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>Zend Framework in Action</title>
	<atom:link href="http://www.zendframeworkinaction.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendframeworkinaction.com</link>
	<description>A book about Zend Framework</description>
	<lastBuildDate>Sat, 04 Jul 2009 07:23:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Secure login with Zend Framework</title>
		<link>http://www.zendframeworkinaction.com/2009/07/04/secure-login-with-zend-framework/</link>
		<comments>http://www.zendframeworkinaction.com/2009/07/04/secure-login-with-zend-framework/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 07:23:24 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=238</guid>
		<description><![CDATA[Enrico Zimuel has posted an article on how to build a secure login with Zend Framework:

After a long pause i’m come back on my blog with a post about the development of a secure web login system in PHP with the use of Zend Framework. The issue to build a login system in a web [...]]]></description>
			<content:encoded><![CDATA[<p>Enrico Zimuel has posted an article on how to <a href="http://www.zimuel.it/blog/?p=86">build a secure login with Zend Framework</a>:</p>

<blockquote>After a long pause i’m come back on my blog with a post about the development of a secure web login system in PHP with the use of Zend Framework. The issue to build a login system in a web application is quite common. The security aspect of a login system is absolutely important and in this post i have summarized some of the main security points. Of course this is not the final solution but, in my opinion, is a good point of start for PHP developers.</blockquote>

<p>He goes on to show all the key steps required including the use of <tt>Zend_Form_Element_Hash</tt> to help secure against <a href="http://en.wikipedia.org/wiki/Cross-site_request_forgery">CSRF</a> attacks.</p>

<p>All in all a good read and Zend Framework 1.8 compatible too <img src='http://www.zendframeworkinaction.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/07/04/secure-login-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3 is released!</title>
		<link>http://www.zendframeworkinaction.com/2009/06/30/php-5-3-is-released/</link>
		<comments>http://www.zendframeworkinaction.com/2009/06/30/php-5-3-is-released/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 19:25:24 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=236</guid>
		<description><![CDATA[It&#8217;s happened! PHP 5.3 has been released. This version was a long time coming and as such has lots of new features and bug fixes.

The key new features for me are:


Namespaces
Late static binding
Closures
Much better Windows support


There is a migration guide available, but you should also check out Cal Evans&#8217; migration notes over at TechPortal too.

You [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s happened! <a href="http://php.net/releases/5_3_0.php">PHP 5.3</a> has been released. This version was a long time coming and as such has lots of new features and bug fixes.</p>

<p>The key new features for me are:</p>

<ul>
<li><a href="http://ca2.php.net/manual/en/language.namespaces.faq.php">Namespaces</a></li>
<li><a href="http://php.net/lsb">Late static binding</a></li>
<li><a href="http://php.net/closures">Closures</a></li>
<li><a href="http://windows.php.net/">Much better Windows support</a></li>
</ul>

<p>There is a <a href="http://php.net/migration53">migration guide</a> available, but you should also check out Cal Evans&#8217; <a href="http://techportal.ibuildings.com/2009/06/30/migrating-to-php-5-3/">migration notes</a> over at TechPortal too.</p>

<p>You can <a href="http://www.php.net/downloads.php">download</a> it directly now, or wait for your favourite distribution to package it for you soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/06/30/php-5-3-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registering front controller plugins in Zend Framework 1.8</title>
		<link>http://www.zendframeworkinaction.com/2009/06/20/registering-front-controller-plugins-in-zend-framework-18/</link>
		<comments>http://www.zendframeworkinaction.com/2009/06/20/registering-front-controller-plugins-in-zend-framework-18/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 06:43:00 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=234</guid>
		<description><![CDATA[Wenbert Del Rosario has posted an article on how to register a front controller plugin using Zend Framework 1.8.

With ZF 1.8, we can now use the application.ini file and he shows the format of the lines required, along with setting it up so that you use your own name space.
]]></description>
			<content:encoded><![CDATA[<p>Wenbert Del Rosario has posted an article on how to <a href="http://blog.ekini.net/2009/06/04/registering-your-custom-plugins-in-zend-framework-18/">register a front controller plugin using Zend Framework 1.8</a>.</p>

<p>With ZF 1.8, we can now use the application.ini file and he shows the format of the lines required, along with setting it up so that you use your own name space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/06/20/registering-front-controller-plugins-in-zend-framework-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework Modular applications</title>
		<link>http://www.zendframeworkinaction.com/2009/06/18/zend-framework-modular-applications/</link>
		<comments>http://www.zendframeworkinaction.com/2009/06/18/zend-framework-modular-applications/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:02:55 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=230</guid>
		<description><![CDATA[Jeroen-Keppens has written a good article on how to create a modular application with Zend Framework:

I like my code nicely seperated in manageable blocks, that I can reuse whenever I want. Needless to say, I&#8217;m a big fan of the modules in Zend Framework. It isn&#8217;t always very easy to set it up though.


He covers [...]]]></description>
			<content:encoded><![CDATA[<p>Jeroen-Keppens has written a good article on how to <a href="http://blog.keppens.biz/2009/06/create-modular-application-with-zend.html">create a modular application with Zend Framework</a>:</p>

<blockquote>I like my code nicely seperated in manageable blocks, that I can reuse whenever I want. Needless to say, I&#8217;m a big fan of the modules in Zend Framework. It isn&#8217;t always very easy to set it up though.
</blockquote>

<p>He covers how to set up modules using the zf command line tool along with a module bootstrap, before covering views and models. Reading this article will certainly help you understand how to use modules in your apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/06/18/zend-framework-modular-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Todo list worked tutorial in Zend Framework</title>
		<link>http://www.zendframeworkinaction.com/2009/06/18/todo-list-worked-tutorial-in-zend-framework/</link>
		<comments>http://www.zendframeworkinaction.com/2009/06/18/todo-list-worked-tutorial-in-zend-framework/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 10:56:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=232</guid>
		<description><![CDATA[Greg, over at threadaffinity has written the first in a series of articles about creating a todo list application using Zend Framework:

A while back we posted a blog entry on a simple Zend Framework example using Zend_Auth. The example consisted of a basic website that re-directed the user to a login page when they tried [...]]]></description>
			<content:encoded><![CDATA[<p>Greg, over at threadaffinity has written the <a href="http://www.threadaffinity.com/blog/2009/06/dodo-introduction/">first in a series of articles</a> about creating a todo list application using Zend Framework:</p>

<blockquote>A while back we posted a blog entry on a simple Zend Framework example using Zend_Auth. The example consisted of a basic website that re-directed the user to a login page when they tried to access a restricted area of the site (eg. their Account page). Well some time passed and we got a little older and wiser in terms of using Zend Framework so we decided to try again &#8211; this time with a little more ambitious goals.
</blockquote>

<p>There&#8217;s already a <a href="http://dodo.threadaffinity.com/">demo site</a> up, where you can download the source code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/06/18/todo-list-worked-tutorial-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple Zend Framework tutorial</title>
		<link>http://www.zendframeworkinaction.com/2009/06/18/simple-zend-framework-tutorial/</link>
		<comments>http://www.zendframeworkinaction.com/2009/06/18/simple-zend-framework-tutorial/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:01:47 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=228</guid>
		<description><![CDATA[Ryan Mauger has produced a simple tutorial showing how to implement the basic CRUD operations using Zend Framwork.

Creating a nice, easy to maintain form, starts with a form class. Creating your forms procedurally in your controller/actions is horrid. please don’t do it.

Read the article.
]]></description>
			<content:encoded><![CDATA[<p>Ryan Mauger has produced a simple tutorial showing how to implement the basic CRUD operations using Zend Framwork.</p>

<blockquote>Creating a nice, easy to maintain form, starts with a form class. Creating your forms procedurally in your controller/actions is horrid. please don’t do it.</blockquote>

<p><a href="http://www.rmauger.co.uk/2009/06/creating-simple-extendible-crud-using-zend-framework/">Read the article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/06/18/simple-zend-framework-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All about Zend_Tool in ZF 1.8</title>
		<link>http://www.zendframeworkinaction.com/2009/05/04/all-about-zend_tool-in-zf-18/</link>
		<comments>http://www.zendframeworkinaction.com/2009/05/04/all-about-zend_tool-in-zf-18/#comments</comments>
		<pubDate>Mon, 04 May 2009 18:53:59 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=221</guid>
		<description><![CDATA[Ralph Schindler has written and article on Zend_Tool and ZF 1.8 on devzone. In it he explains what Zend_Tool is and how to use it.

Instead of whipping together a system that was targeted specifically for creating ZF based applications, specifically on the command line, and strictly generating code and not modifying existing code, we set [...]]]></description>
			<content:encoded><![CDATA[<p>Ralph Schindler has written and article on <a href="http://devzone.zend.com/article/4559-Zend_Tool-and-ZF-1.8">Zend_Tool and ZF 1.8</a> on devzone. In it he explains what Zend_Tool is and how to use it.</p>

<blockquote>Instead of whipping together a system that was targeted specifically for creating ZF based applications, specifically on the command line, and strictly generating code and not modifying existing code, we set out to build a system extensible in every regard that should concern a developer. Zend_Tool was designed to facilitate abstraction at all the necessary points where we felt that developers would want to extend the system.</blockquote>

<p>He then goes on to show what Zend_Tool can currently do using a series of screenshots.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/05/04/all-about-zend_tool-in-zf-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.8 released!</title>
		<link>http://www.zendframeworkinaction.com/2009/05/01/zend-framework-18-released/</link>
		<comments>http://www.zendframeworkinaction.com/2009/05/01/zend-framework-18-released/#comments</comments>
		<pubDate>Fri, 01 May 2009 05:36:33 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=216</guid>
		<description><![CDATA[Zend Framework 1.8, has been released!

From the read me, new features include:


Zend&#95;Tool, contributed by Ralph Schindler
Zend&#95;Application, contributed by Ben Scholzen and Matthew Weier O&#8217;Phinney
Zend&#95;Navigation, contributed by Robin Skoglund
Zend&#95;CodeGenerator, by Ralph Schindler
Zend&#95;Reflection, Ralph Schindler and Matthew Weier O&#8217;Phinney
Zend Server backend for Zend&#95;Cache, contributed by Alexander Veremyev
Zend&#95;Service&#95;Amazon&#95;Ec2, contributed by Jon Whitcraft
Zend&#95;Service&#95;Amazon&#95;S3, Justin Plock and Stas Malyshev
Zend&#95;Filter&#95;Encrypt, contributed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://framework.zend.com/">Zend Framework 1.8</a>, has been released!</p>

<p>From the read me, new features include:</p>

<ul>
<li>Zend&#95;Tool, contributed by Ralph Schindler</li>
<li>Zend&#95;Application, contributed by Ben Scholzen and Matthew Weier O&#8217;Phinney</li>
<li>Zend&#95;Navigation, contributed by Robin Skoglund</li>
<li>Zend&#95;CodeGenerator, by Ralph Schindler</li>
<li>Zend&#95;Reflection, Ralph Schindler and Matthew Weier O&#8217;Phinney</li>
<li>Zend Server backend for Zend&#95;Cache, contributed by Alexander Veremyev</li>
<li>Zend&#95;Service&#95;Amazon&#95;Ec2, contributed by Jon Whitcraft</li>
<li>Zend&#95;Service&#95;Amazon&#95;S3, Justin Plock and Stas Malyshev</li>
<li>Zend&#95;Filter&#95;Encrypt, contributed by Thomas Weidner</li>
<li>Zend&#95;Filter&#95;Decrypt, contributed by Thomas Weidner</li>
<li>Support for file upload progress support in Zend&#95;File&#95;Transfer,
contributed by Thomas Weidner</li>
<li>Translation-aware routes, contributed by Ben Scholzen</li>
<li>Zend&#95;Json expression support, contributed by Benjamin Eberlei and
Oscar Reales</li>
<li>Zend&#95;Http&#95;Client&#95;Adapter&#95;Curl, contributed by Benjamin Eberlei</li>
<li>SOAP input and output header support, contributed by Alexander Veremyev</li>
<li>Support for keyword field search using query strings,
contributed by Alexander Veremyev</li>
<li>Support for searching across multiple indexes in Zend&#95;Search&#95;Lucene,
contributed by Alexander Veremyev</li>
<li>Support for page scaling, shifting and skewing in Zend&#95;Pdf,
contributed by Alexander Veremyev</li>
<li>Locale support in Zend&#95;Validate&#95;Int and Zend&#95;Validate&#95;Float,
contributed by Thomas Weidner</li>
<li>Phonecode support in Zend&#95;Locale, contributed by Thomas Weidner</li>
<li>Zend&#95;Validate&#95;Iban, contributed by Thomas Weidner</li>
<li>Zend&#95;Validate&#95;File&#95;WordCount, contributed by Thomas Weidner</li>
</ul>

<p><a href="http://framework.zend.com/download/latest">Download it here</a>.</p>

<p>I have also completely revised and updated my <a href="http://akrabat.com/zend-framework-tutorial">Zend Framework tutorial</a> over at akrabat.com to support the new <tt>Zend&#95;Tool</tt> command line tool and <tt>Zend&#95;Application</tt> for bootstrapping.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/05/01/zend-framework-18-released/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Zend_Tag_Cloud screencast</title>
		<link>http://www.zendframeworkinaction.com/2009/04/29/zend_tag_cloud-screencast/</link>
		<comments>http://www.zendframeworkinaction.com/2009/04/29/zend_tag_cloud-screencast/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 08:24:10 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Around the web]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=208</guid>
		<description><![CDATA[Ben Scholzen has posted a screencast showing how to use the new Zend_Tag_Cloud component that will be in Zend Framework version 1.8.

The video goes though how to create a tag cloud where each tag has a title, weight and optional URL. Zend_Tag_Cloud will automatically render the tags as unsigned lists with appropriate font sizes to [...]]]></description>
			<content:encoded><![CDATA[<p>Ben Scholzen has posted a <a href="http://www.dasprids.de/blog/2009/04/24/zend-tag-cloud-screencast">screencast</a> showing how to use the new Zend_Tag_Cloud component that will be in Zend Framework version 1.8.</p>

<p>The video goes though how to create a tag cloud where each tag has a title, weight and optional URL. <tt>Zend_Tag_Cloud</tt> will automatically render the tags as unsigned lists with appropriate font sizes to show the relative weights of each tag.</p>

<p>He then shows how to style the list so that it looks like a traditional tag cloud that you see around the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/04/29/zend_tag_cloud-screencast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.8 beta 1</title>
		<link>http://www.zendframeworkinaction.com/2009/04/23/zend-framework-18-beta-1/</link>
		<comments>http://www.zendframeworkinaction.com/2009/04/23/zend-framework-18-beta-1/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 05:56:11 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zendframeworkinaction.com/?p=206</guid>
		<description><![CDATA[The march towards the release of version 1.8 of Zend Framework continues with the first beta release. From the announcement:


Please download and test this release thoroughly over the next few days
so that we can fix any urgent issues or documentation problems before
the final release next week. Please remember to provide feedback on our
issue tracker  [...]]]></description>
			<content:encoded><![CDATA[<p>The march towards the release of version 1.8 of Zend Framework continues with the first beta release. From the announcement:</p>

<blockquote>
Please download and test this release thoroughly over the next few days
so that we can fix any urgent issues or documentation problems before
the final release next week. Please remember to provide feedback on our
issue tracker <http://framework.zend.com/issues> and ask any questions
on the appropriate mailing list. 

Again, the Zend Framework community does NOT recommend this release for 
production use. We do, however, recommend evaluating new features in 
this release with existing and new applications. 
</blockquote>

<p><a href="http://framework.zend.com/download/latest">Download</a> and test your sites now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zendframeworkinaction.com/2009/04/23/zend-framework-18-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.437 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-07-04 15:29:50 -->
