Ganesh H S

Thoughts on open source technologies, search engine optimization, website security

zend framework tutorial: Part 4 - zend config

In the previous post about setting project environment setting http://ganeshhs.com/php/php-configuring-project-environment-using-ini-file , zend config plays a vital role in initializing the environment variables and by default, configuration data made available through Zend_Config are read-only.
Lets write the ini configuration file application/config.ini
[staging]
db.adapter = PDO_MYSQL
db.config.host = localhost
db.config.username = mysql_user
db.config.password […]

zend framework tutorial : Part 3 - zend loader

Zend loader is much similar to require_once, best usage is if we have to load a file based on the variable value.
<?php

require_once “Zend/Loader.php”;

Zend_Loader::loadClass(’Zend_Session’);

Zend_Session::start();
?>
The above example, illustrates loading the zend session class and starting the session.
Here i am not going to discuss complete usage of zend loader, i will be explaining zend framework concepts to quick […]

zend framework tutorial: Part 1 - project layout

In this zend framework tutorial, we will learn how to create the file/directory layout when developing any project using zend framework.

application - business logic files, no access for website users
library […]

zend framework tutorial: Part 2 - Bootstrap file

To completely understand the bootstrap files, you need to read all the tutorials of zend framework. I will cover all this topics in upcoming tutorials.
Lets start writing the bootstrap file public/index.php -
<?php

/**
* Bootstrap file for zend framework
*
* Set the environment settings of zend framework
*
* PHP versions 5.1.4+
*
*
* @category zend framework tutorials
* @author Ganesh H S […]

  Next Entries »