FAIL (the browser should render some flash content, not this).

Zend Framework 1.9.1 Released

August 18, 2009
We are pleased to announce the immediate availability of Zend Framework 1.9.1, the first maintenance release in the 1.9 series.

Over 30 issues have been resolved for this release, covering 17 different components.

Note: This release also contains various fixes to the Zend_Tool command line runner, as well as fixes and improvements for other components. However, we do not currently support the Zend_Tool command line runner. This is a tool you should use locally which you can obtain here.

For a full list of closed issues, please visit: http://framework.zend.com/changelog/1.9.1.

Getting Started

Zend Framework is available to all hosting packages, and can be globally implemented in any scope of your php application(s).

For example, if you wanted to implement Zend_Session, you could use the following code:

					require_once 'Zend/Loader.php';
					Zend_Loader::loadClass('Zend_Session');