
Search In
Data validation plays an important part in any of the application. It is very important to make ensure that user has input valid Fields or not. For example, passwords are at least eight characters long or more, User Names ,emails are unique,pho
Hello Readers,
Till now we may develop our appication with single database . Is their any ways to integrate our application with multiple databases ? . Yes we have.
There are methods to use multiple databases for development and for production wit
There are different type of methods that we can use in cakePHP to add functionality.
1. constructClasses()- This method load the model required by the controller. This can be used while in the command line prompt.
2.referrer(mixed $default = null,
Hi Reader's,
Welcome to FindNerd, today we are going to discuss install Plugins in Cake PHP.
When adding a Plugins in CakePHP web application we should follow any of the below four ways
1- Manually plugin install
2- Plugin installed As Git Subm
Hi,
We can make an admin panel easily in cakePHP using a plugin called "BrowniePHP" .It help us to create an admin panel in short time of span.
for using BrowniePHP, you should know how to develop applications in cakePHP.
How to Set up t
Hello Readers, Here is a small application in CakePHP to add users through which we can Understand "How MVC Architecture works" ? For better understanding of MVC Architecture, I will manually create Model, Controller and Views.
First, You
HABTM association is used when you have two models that need to be joined up, repeatedly, many times in many different ways.
So below is the following steps to follow to use the above relationship. First we create the database and its tables
The Tab
Hi all,
I am explaining here how we can build large interactive applications in any technology not even in php. We can build a very powerful applications using Three tier architecture known as Model View Controller i.e MVC. There are so many mvc fr
We can use Auth component in cakephp for authentication and authorization objects. Since it easy and secure way to do this.
Write following in your App controller
public $components = array(
'Auth' => array('loginAction' => a
In cakephp we might be familiar with the simple find("all") and findById() functions.
But fetching data with some conditions like we write select query with where condition.
lets us first look at simple find function
$this->User->find("all"