Google News
logo
Zend framework - Interview Questions
How to protect a website from SQL injection in Zend using select Query?
In Zend, you can protect a website from sql injection using select query :
$this->getAdapter()->quote();  
$select->where(" = ",);  
$select->where(" = ? ",);
Advertisement