Phalcon Request Environment HTTP request is originated by browser which contains additional information regarding the request such as header data, files, variables,…
class autoloader
-
-
Cross-Site Request Forgery (CSRF) protection CSRF protection is against the form elements such as in user registration or adding comments are vulnerable…
-
Phalcon Responses In Phalcon when any request is generated, the user provides the manual response or the response is given by controller.…
-
Phalcon First Example Bootstrap To create any app in phalcon, firstly you have to create a bootstrap file. Bootstrap file acts as…
-
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…
-
Insert/Update/Delete Rows Inserting Rows // Inserting data with a raw SQL statement $sql = ‘INSERT INTO ‘company'(‘name’, ‘year’) VALUES (‘tutoraspire’, 2010)’; $success…