FuelPHP – Simple Web Application
In this FuelPHP - Simple Web Application chapter, we will see how to create a simple web application in FuelPHP framework. As discussed earlier, you know how to create a…
In this FuelPHP - Simple Web Application chapter, we will see how to create a simple web application in FuelPHP framework. As discussed earlier, you know how to create a…
FuelPHP Architecture Overview is based on battle tested Model-View-Controller architecture along with HMVC (Hierarchical MVC) support. While MVC provides flexible and layered application development, HMVC goes one step further to enable widgetization of the…
In this FuelPHP - Installation chapter we will explains how to install FuelPHP framework on your machine. FuelPHP installation is very simple and easy. You have two methods to create…
FuelPHP Tutorial is an open source web application framework, designed for developers who need a simple and elegant toolkit to create full-featured web applications. The development of FuelPHP started in…
In Django, Ajax essentially is a combination of technologies that are integrated together to reduce the number of page loads. We generally use Ajax to ease end-user experience. Using Ajax…
Django RSS comes with a syndication feed generating framework. With it you can create RSS or Atom feeds just by subclassing django.contrib.syndication.views.Feed class. Let's create a feed for the latest comments…
Before starting, note that the Django Comments framework is deprecated, since the 1.5 version. Now you can use external feature for doing so, but if you still want to use…
In this Django caching chapter, we will discuss how to cache something is to save the result of an expensive calculation, so that you don’t perform it the next time…
UML Basic Notations is popular for its diagrammatic notations. We all know that UML is for visualizing, specifying, constructing, and documenting the components of software and non-software systems. Hence, visualization…
As discussed earlier of Django Sessions, we can use client side cookies to store a lot of useful data for the web app. We have seen before that we can…