- Categories
- Best Practice (7)
- DotKernel (12)
- javascript (1)
- PHP Development (6)
- Zend Framework (3)
Tag Archives: Zend Framework
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
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
INSERT, UPDATE, DELETE statements with Zend_Db
Continuing the Zend_DB article series, we are stopping now at DML statements. DML (Data Manipulation Language) statements are statements that change data values in database tables. There are 3 primary DML statements: INSERT – Inserting new rows into database tables. … Continue reading