A recent release of Zend Framework intruduced Zend_Application: an organized way to bootstrap the framework without the need of an ugly boostrap.php file. It comes with plugins support too, so let’s see how to create one. With Zend_Application you can not only setup all the components required (Zend_Table, Zend_View, Zend_Navigation, ecc) but you can also […]
Category Archives: PHP
Update: See my guide on How to make your own Zend Framework Resource Plugin Building Facebook applications with Zend Framework, I’ve needed a debug console that can shows messages even in a Facebook canvas page, through an ajax request or a redirect. For this purpose I’ve build a custom plugin for ZF that fits the […]
I’ve just finished a Facebook game, so here a quick tutorial on how to use Zend Framework to build a Facebook Application. Facebook basics You can integrate your application with facebook in two way: with an IFRAME (using XFBML) or with FBML. (If you are already familiar with how a Facebook application work you can […]
dBug is a php library that print a nice-formatted dump of a variable: Will be formatted like this: Variable types supported are: Arrays, Objects, Recordsets and XML Resources.