Zend Framework: Writing and Reading Session Data Using Zend Session Namespace

October 5th, 2012 by Laeeq | No comments

Today I have tried with Session in Zend Framework. Actually Session handling is very simple in Zend Framework. It’s handled very efficiently using Object Oriented Programming. In this article I’m going to discuss some useful techniques of using Zend Framework Session and Session namespace. In Zend framework, you can use both Zend_Session and Zend_Session_Namespace which extends abstract class Zend_Session_Abstract. So these two inherited methods are available in Zend_Session_Abstract automatically.

Read Full Post »

zend framework

Zend Interview Questions

July 21st, 2012 by Laeeq | 3 comments

Zend Framework Interview Question Answers

Question: What is autoloader?

Ans: Autoloader is function that load all the object on start up.

Question: What is use of Zend front controller?

Ans: Routing and dispatching is managed in the front controller. It collects all the request from the server and handles it.

Question: What is the use of Bootstrap?

Ans: Apart from index if we want to do any extra configuration regarding database and other things that is done within bootstrap.

Read Full Post »

zend framework