mysql - PHP framework or library for DB abstraction, secure login -


i building site requires lot of mysql inserts , lookups different tables in (hopefully) secure part of site. want use abstraction layer whole process. should use php framework (like zend or cakephp) this, or use simple library (like crystal or doctrine)?

i make sure db inserts done in relatively secure part of site (though not ssl). currently, using method outlined here (md5 encryption , random challenge string), maybe of frameworks come similar functionality simplify process?

what i'm trying implement: table of forms filled out db values. if change value or add new row, pressing "save" update or insert db rows. i'm sure has been done before, wouldn't want reinvent wheel.

most php backends have secure access private database. normally, there's little difficulty keeping database secure, not making reachable directly. way security of access depends on inability tamper php code, , not software security scheme.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -