PHP Frameworks
Aspect Oriented Programming From Scratch
Aspect Oriented Programming also known as AOP allows you to separate your cross cutting concerns from core business logic and allows you to focus on business logic related tasks. All the additional repeating functionality can be assigned to the AOP framework and it will automatically do the repetitive tasks at specified points at the function flow.
In this article I am going to provide you the necessary resources for learning aspect oriented programming from scratch. Article will be mainly focused on PHP and Java related resources will be provided later.
Article Contents
- Aspect Oriented Programming with Codeigniter
- Advanced AOP Articles for PHP
- Advanced AOP Articles for Java
Introduction to Transactions Management Transaction management is a very important part of any web application or desktop application. Transaction allows you to safely apply the changes to the database done inside more than one process maintaining the consistency of the database. In simpler if you want either to apply all changes or none to the [...]
Introduction to smarty literals Smarty literals provide a way to include anything inside the tags without interpreting. Literals are useful when inserting javascript and css code inside your templates. Smarty uses delimiters to define its variables and code. The default delimiters of smarty is { and }. Since js and css contain these curly braces [...]
Follow Us On Facebook
