Phalcon Query Language (PHQL) It allows user to implement query language similar to SQL query language. PHQL is implemented as a parser…
cache
-
-
Phalcon Cookie Management Cookie is a small text file stored by browser on user system. Cookies were designed to be a reliable…
-
Phalcon Request Environment HTTP request is originated by browser which contains additional information regarding the request such as header data, files, variables,…
-
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…
-
Hibernate Many to Many Example using Annotation In the previous section, we have performed many to many mapping using XML file. Here,…
-
Hibernate Many to Many Example using XML We can map many to many relation either using list, set, bag, map, etc. Here,…