The objective of this class is to provide a foundation class for admin forms which provides the following:
Security - a hash input is used. It must return to the server with the same value sent to the client.
Multi-form pages - this class prefixes… more »
AES_ENCRYPT with Doctrine ORM
With thanks to the link above, this code snippet delivers the encrypted value of the password from the database.
$manager=Doctrine_Manager::getInstance();
$conn=Doctrine_Manager::connection('mysql://user:password@localhost/database','doctrine');
$aP… more »