Phalcon First Example Bootstrap To create any app in phalcon, firstly you have to create a bootstrap file. Bootstrap file acts as…
cache
-
-
Phalcon Transactions and Nested Transactions Transaction is supported in Phalcon as it is attached with PDO. To increase the performance of the…
-
Phalcon Forms It handles creation and maintenance of forms in the web application. Now, as we have designed a basic web-app before…
-
Phalcon Image This component allows developers to manipulate image files. We can perform multiple operation on a single image file. Adapters Adapter…
-
Phalcon Features It is the fastest framework for PHP. It is a full stack open source framework. It can create independent framework.…
-
Insert/Update/Delete Rows Inserting Rows // Inserting data with a raw SQL statement $sql = ‘INSERT INTO ‘company'(‘name’, ‘year’) VALUES (‘tutoraspire’, 2010)’; $success…
-
Phalcon Layer It powers the model layer in the framework. It is found under the directory PhalconDb. It consists of abstraction layer…
-
Phalcon Logging This method found under directory PhalconLogger. It provides logging services for application. We can login to different backend using different…
-
Phalcon Model Behaviours Behaviour is shared conducts which is used by the models to reuse the code. The ORM provides an API…
-
Phalcon Model Events Models allows user to implement events when operation such as insert/update/delete is implemented to define business rules. The following…