
Search In
Hi Reader's,
Welcome to FindNerd,today we are going to discuss on load model in CakePHP.
Basically model is a very important feature in a CakePHP web application because it is manage everything regarding our data, So in other words, we can say t
Cake models are not available in components. So we need to include them manually. There are lot of ways but I found following very easy:
Just include construct class in your component class and add all required models there:
public function __cons
In simple sql query we concat two fields by using concat keyword
SELECT CONCAT( `firstname` , ' ', `lastname` ) AS fullname
FROM user
But in cakephp we can do this by using 'virtualFields'
class User extends AppModel {
public $virtualFiel
Hello Readers,
Below are some of the features of CakePhp:
CakePhp is basically a framework which is based on MVC pattern i.e(model view controller).
Cakephp is compatible with php version 4 and 5 plus.
Cakephp have built in validation.
Cakephp h
Sometime we need to create association between models .we need this because ,we want that all associated data came on the first level of recursion.
In cakephp creation of association is done by using cakephp bindModel() method.
In below code we are
I am writing this blog for them who are new to Cakephp and learning it. In Cakephp there are three ways to load models:
First way is:
App::import(): It will find and require()s the file and in order to use it you need to be instantiate the class. i
Hello friends, welcome to findnerd. I am writing this blog which will let you know how to check if record exists in Cakephp 2.* . The best way to do is to use Model::hasAny
hasAny( array $conditions null ) : Returns true if a record that meets given
Cakephp 2.*: OR condition
I am writing this blog which will let you know how to set OR condition in Cakephp 2.*:
Write following lines of code to use OR condition:
'User' => array (
'conditions' => array (
'OR' => array(
The GROUP BY statement is used in conjunction with the aggregate functions to group the result-set by one or more columns.
Below is the possible keys that we use in cakephp query.
$params =
array(
'conditions' => array('Model.fi
Installing Cakephp 3
Welcome to Findnerd friends. Today I am going to tell you how to generate code using cakephp 3.
We are going to start from the installation process in cakephp 3. Lets begin installing cakephp 3 by writing the following command o