What is CakePHP ?

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by Farheen

    CakePHP is an MVC (Model-View-Controller) open-source web framework that is written in PHP for creating web applications. It is a cross-platform rapid application framework that was first released in 2005.

    CakePHP follows some of the known software engineering concepts such as active record, association data mapping, front controller, MVC, and convention over configuration. This framework is modeled after Ruby on Rails and is now published under the MIT license. CakePHP uses code generation and scaffolding features to build your applications rapidly. It also has built-in tools like CSRF protection, Form tampering protection, and SQL injection prevention for better security.

Related Questions

Please Login or Register to leave a response.

Related Questions

Cakephp Interview Questions

What is MVC in CakePHP?

MVC stands for the model view controller.MVC is not a design pattern, it is an architectural pattern that describes a way to structure our application and explains the responsibilities and interaction..

Cakephp Interview Questions

What are Hooks in CakePHP?

CakePHP hooks are callback functions that are called before or after a model operation.We define these functions in our Model classes...