Google Ads

Proudly Hosted on

About Me

Hi, I 'm Aditya, the guy behind this website and many other. This site acts as my web playground, where I share all about me, my work and my knowledge.

I have over 10.5 yrs hands on experience in PHP, Mysql, JavaScript, open sources CMS like Joomla, Wordpress etc. During these 10.5 years, I have worked on more than 200 projects and/or websites but could not spare time for my blog. But now I am trying to write something whenever I can.

 

 

Posts Tagged ‘MVC’

CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. Using commonly known design patterns like MVC and ORM within the convention over configuration paradigm, CakePHP reduces development costs and helps developers write less code.

Features

 

  • No Configuration – Set-up the database and let the magic begin
  • Extremely Simple – Just look at the name…It's Cake
  • Active, Friendly Community – Join us #cakephp on IRC. We'd love to help you get started
  • Flexible License – Distributed under the MIT License
  • Clean IP – Every line of code was written by the CakePHP development team
  • Best Practices – covering security, authentication, and session handling, among the many other features
  • OO – Whether you are a seasoned object-oriented programmer or a beginner, you'll feel comfortable     
More
Tags: ,   |  Posted under MVC, PHP  |  Comments  1 Comment
Last Updated on Sunday, 13 December 2009 09:49

Development of PHP scripts without a preconceived plan to manage them is asking for a headache. The goal of a framework is to make the process of writing web-based applications simpler.

An application designed around MVC is easier to manage because it is split into tiers, which allow for independent development. This promotes code reusability by building models, which are reusable throughout the application.

What makes a good framework?

A good framework is easy to learn, simple to use, intuitive to work with, easy to extend or to modify, rapid to build (maintain) applications with and of course stable.

Various Frameworks

1. Cake Php

2. CodeIgniter

3. Zend

4. Yii

5. Symphony

6. Prado

7. Akelos

Cake Php – A  rapid development framework for PHP which uses commonly known design patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.

Website:- http://www.cakephp.org

More

CodeIgniter – CodeIgniter is an Application Development Framework – a toolkit – for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. CodeIgniter lets you creatively focus on your project by minimizing the amount of code needed for a given task.

Website:- http://www.codeigniter.com/

More

Zend – Extending the art & spirit of PHP, Zend Framework is based on simplicity, object-oriented best practices, corporate friendly licensing, and a rigorously tested agile codebase. Zend Framework is focused on building more secure, reliable, and modern Web 2.0 applications & web services, and consuming widely available APIs from leading vendors like Google, Amazon, Yahoo!, Flickr, as well as API providers and cataloguers like StrikeIron and ProgrammableWeb.

Website: http://framework.zend.com/home

More

More
Tags: , , , ,   |  Posted under MVC, PHP  |  Comments  No Comments
Last Updated on Sunday, 13 December 2009 09:40

 

PHP

Project  ? Current Stable Version  ? License  ?
AgilePHP 0.2a GPL
Atomik Framework 0.9 MIT
PRADO 3.1.6 revised BSD
CakePHP 1.2.5 MIT
Drupal 6.14 GPL
CodeIgniter 1.7.2 BSD-style
F3::PHP Fat-Free Framework 0.3.1 Creative Commons
Joomla 1.5.15 GPL
Helix 1.0 GPL
Horde 3.2 LGPL
e107 0.7.16 GPL
eZ Components 2009.1.2 BSD
FUSE 1.2 MIT
Kohana 3.0.1 BSD
KumbiaPHP 0.5 BSD / GPL
LISA 0.2.1 GPL
Mambo 4.6.5 GPL
PEAR 1.4.0 PHP / Various
PHP For Applications 3.2.2 LGPL
PHP ActiveRecord 3.2.2 MIT
PHP Work 1.2 MIT
Qcodo 0.4.2 MIT
QCubed 1.1 MIT
Seagull 0.6.6 BSD
SilverStripe (Sapphire) 2.3.2 BSD
SPIP 2.0.9 GPL
Symfony 1.4.0 MIT
TYPO3 4.3.0 GPL
[Yii][3] 1.0.10 BSD
Zend Framework 1.9.6 BSD
Project Current Stable Version License
More
Tags: , ,   |  Posted under MVC, PHP  |  Comments  3 Comments
Last Updated on Sunday, 13 December 2009 09:51
MVC

Model–View–Controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the model represents the information (the data) of the application; the view corresponds to elements of the user interface such as text, checkbox items, and so forth; and the controller manages the communication of data and the business rules used to manipulate the data to and from the model.

In simpler words-

1. Model handles all our database logic. Using the model we connect to our database and provide an abstraction layer.
2. Controller represents all our business logic i.e. all our ifs and else.
3. View represents our presentation logic i.e our HTML/XML/JSON code.

More
Tags: ,   |  Posted under PHP  |  Comments  No Comments
Last Updated on Monday, 2 November 2009 03:07