How to protect your site from sql injection in zend when using select query?
Answer Posted / Santosh Sen
To protect against SQL injection in Zend Framework while using a SELECT query, you can use the Zend_Db_Table_Abstract class's prepareStatement() method, which automatically escapes any user input. Alternatively, you can use the Zend_Filter_Input component for input filtering.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers