Zend Framework

Zend Framework

Zend Framework And RESTful Web Service

REST web api is not a new toy today. One of public service that user RESTful Architecture is twitter. On Zend Framework, we can implement RESTful easily. Just make action that related with HTTP method used.

getAction()  => handle request with HTTP GET
postAction() => handle request with HTTP POST
putAction()  => handle request with HTTP PUT
deleteAction()  => handle request with HTTP DELETE

For more details, please see these steps

Doctrine Usage On Zend Framework

doctrine logo In the last few months I used doctrine as ORM on my project. Actually, there are a few ORM on PHP like propel.

Log Your PHP Application With Zend_Log (Part 3/Finish)

This article is a continuation of Log Your PHP Application With Zend_Log (Part 2). Check it out if you missed it. Last time I wrote about installation and some features of Zend_Log. Now I will explain about Zend_Log usage.

Zend_Log Usage

Log Your PHP Application With Zend_Log (Part 2)

This article is a continuation of Log Your PHP Application With Zend_Log (Part 1). Check it out if you missed it. Last time I wrote about some features of Zend_Log. And now I will explain about installation and terminologies on Zend_Log.

Installation

Log Your PHP Application With Zend_Log (Part 1)

Log is very important for a system. With it we can monitor the system that currently running, and make easy to trace the really source problem on the system

For PHP programmer, you don't need to be headache to think how make proper log in your PHP application. With Zend_Log, all your need to make proper log has suffice.

Syndicate content