Nov
20
2011

PHP Character Encoding Settings

phpini-featured

Hi, in this article i will mention about how to change PHP character encoding settings. If you want to change your php charset setting globally, you can do it by updating your php.ini file.However, if you want to do it only for specific components or specific projects, you can use PHP functions inorder to set php configurations on runtime. Global Configuration As you know, php configurations are placed in a file  called “php.ini”. This file [...]

Oct
14
2011

Zend Framework Courses – MVC

zf-logo

Hi, in this article i will mention about the topic MVC that used in Zend Framework. I think, most of you have heard about the term MVC. So, what is this MVC? MVC stands for Model-View-Controller and it creates the basic substructure of current modern web applications. Let’s look at the below diagram; Model: The functional structure of applications are located here.  This functional structure is always behind a abstract system. In other words, this [...]

Sep
28
2011

Zend Framework Courses-Introduction

zf-logo

Hello everyone, I am here with Zend Framework tutorials.In this series, i will try to tell you about Zend Framework by using my experiences.Zend Framework will be discussed on Linux(Ubuntu). Before starting the tutorial i want to make an important reminder.I would recommend you to practise examples at the end of each subject, the more you practise, the easier you understand. In this tutorial, i will tell you about Zend Framework installation and i will [...]

Aug
28
2011

PHP and Gearman

gearman

In this article, i will introduce you howto use gearman with php.Firstly, lets have a look at the term Gearman. Introduction Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites [...]