Решила, ознакомиться с Zend Framework. Наткнулась на статью
http://habrahabr.ru/blogs/php/31168/ . Скачала сам ZendFramework-1.11.7.
C:\WebServers\home\test\www создала файл: index.php с таким кодом:
<?php
error_reporting(E_ALL|E_STRICT);
date_default_timezone_set('Europe/London');
set_include_path('.'.PATH_SEPARATOR . './library'
.PATH_SEPARATOR.'./application/models/'
.PATH_SEPARATOR.get_include_path());
include "Zend/Loader.php";
Zend_Loader::loadClass('Zend/Controller/Front.php');
// setup controller
$frontController = Zend_Controller_Front::getInstance();
$frontController->throwExceptions(true);
$frontController->setControllerDirectory('./application/controllers');
// run!
$frontController->dispatch();
и папку application, в которую входят папки: controllers, library/Zend, models, public, views.
Не работает.. Пишет ошибку:
Warning: include(Zend/Loader.php) [function.include]: failed to open stream: No such file or directory in Z:\home\test\www\index.php on line 9
Warning: include() [function.include]: Failed opening 'Zend/Loader.php' for inclusion (include_path='.;./library;./application/models/;.;/usr/local/php5/PEAR') in Z:\home\test\www\index.php on line 9
Fatal error: Class 'Zend_Loader' not found in Z:\home\test\www\index.php on line 10
Что не так?