Tag Archives: Zend Framework

June 1, 2011
by Adrian

Zend Registry usage in DotKernel

In DotKernel, Zend_Registry will contain the following variables: startTime - the result of microtime() at the beginning of the request configuration – the configuration options loaded from configs/application.ini router – routing settings loaded from configs/router.xml Continue reading

Posted in DotKernel, Zend Framework | Tagged , | 1 Comment

October 27, 2010
by Teo

WURFL Zend Framework Integration into DotKernel

WURFL is integrated into DotKernel, using the Zend_Http_UserAgent class from the latest release ZF 1.11.0rc1 ( Beta release at the date of this post). The integration of WURFL into DotKernel is described below. Download WURFL PHP API and unzip it … Continue reading

Posted in DotKernel | Tagged , , | 2 Comments

September 10, 2010
by Teo

Using LIKE wildcards with Zend_Db

Continuing the Zend_Db article series, let’s discuss the LIKE condition. The LIKE condition allows you to use wildcards in the WHERE clause of an SQL statement. This allows pattern matching. It can be used in any valid SQL statement (SELECT, … Continue reading

Posted in Best Practice | Tagged , | Leave a comment

June 18, 2010
by Teo

Protection against SQL Injection using PDO and Zend Framework – part 2

Following the preview article about SQL Injection, here is more – a strong argument why you should use Zend Framework for handling database access. Zend_Db is the primary class used for access the database, but there is more: Zend_Db_Statement, Zend_Db_Select … Continue reading

Posted in Best Practice, PHP Development | Tagged , | Leave a comment

June 16, 2010
by Julian

Protection against SQL Injection using PDO and Zend Framework

SQL injection is a technique that exploits a security vulnerability occurring in the database layer of an application. Usually, user input is not filtered by the script and is passed into a SQL statement. PDO – PHP Data Objects – … Continue reading

Posted in Best Practice, PHP Development | Tagged , | 5 Comments