Phalcon Model Events Models allows user to implement events when operation such as insert/update/delete is implemented to define business rules. The following…
class autoloader
-
-
Cache Cache is a class found under PhalconCache directory. It helps in accessing frequently used data at much faster rate. PhalconCache is…
-
Phalcon Model Transactions A model transaction helps to maintain the integrity of the database after the operations such as insert/delete/update/rollback etc. Transaction…
-
Phalcon Class Autoloader Loader is a class found under PhalconLoader directory. This class consists of some pre-defined rules according to rules it…
-
Phalcon Models Model consists of information or data of the application. It manipulates the data by managing the rules. It is found…
-
Phalcon Configuration It is a component which is used to convert configuration files into PHP. Its directory location is PhalconConfig. Implementation <?php…
-
Phalcon Security Phalcon provides the common security tasks to the developers such as: Password Hashing. Cross-Site Request Forgery protection (CSRF). Password Hashing…
-
Phalcon Connecting to Database We connect the front-end with the backend i.e. database. To access the database we required username and password.…
-
Phalcon Query Language (PHQL) It allows user to implement query language similar to SQL query language. PHQL is implemented as a parser…
-
Phalcon Cookie Management Cookie is a small text file stored by browser on user system. Cookies were designed to be a reliable…