Entries Tagged as ‘PHP’

April 17, 2007

Zend Core 2.0 does not work with PEAR

Trying to install Zend Platform 3 for Windows I was surprised to see that it requires Zend Core 2.0 now. Ok, so it removed my installation of XAMP to give this one a try.
Unfortunately the trial ended soon. My first step after running the installer was to try to install some PEAR packages using go-pear, [...]

February 15, 2007

FirePHP

If Firebug impoved the way you do your web development (I bet it did) - and you do this with PHP, you might want to follow the FirePHP project. It brings the Firebug goodness into the PHP world.

January 11, 2007

ezComponents Graph

Most PHP developers may know (or have used) JPGraph for creating chart images in PHP. Now there is a new player in the game:
ezComponents now has its own Graph component. The tutorial shows some impressive examples. Besides that there is an introductory  article by Kore Nordmann about the component.

November 12, 2006

CSS/JS compression with PHP

When using Javascript and CSS extensively the sizes of these files are going to make a quite notable amount of a web site. Especially when using a JS framework it adds many KB to every file.
I stumbled across a solution for Javascript which also can - and has been used for CSS.
I tested the .htacces-solution [...]

September 6, 2006

Getting started with the Zend Framework

A “Getting Started“-PDF by Rob Allen.
Update (04/06/2007): Rob updated his tutorial to reflect the many changes to the Zend Framework. Mainly the MVC part has been streamlined and now it looks even better than before. The tutorial has been translated into several languages (including German) and the source code of the tutorial is also available.

July 5, 2006

Zend Platform on Windows

Since Zend offers their product ZendPlatform free for developers in combination with ZendStudio I thought to give it another try.

March 7, 2006

Zend Framework Preview

Zend has released a first preview set of their Framework. Although there are already many frameworks out there, this one seems to get much attention just because it’s from Zend.
php|architect has published a great tutorial showing some basic examples of using the Framework - mainly its MVC components. This is a “must read” for everyone [...]

February 24, 2006

Yahoo! PHP Developer Center

Yahoo! opens their PHP developer center.
One interesting article is the use of Yahoo web service which return serialized PHP structures instead of XML. This make the handling of the returned data easy as calling the unserialize function. But before jumping up and down, make sure you read the possible down-sides of this.