Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Discussion on load models in CakePHP

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

Include models in cakePHP components

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

How to concat two fields in cakephp

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

Features of cakephp

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

Creating association between tables using bindModel method in cakephp

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

How to load models in CakePHP?

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

How to check if record exists in Cakephp ?

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

How to set OR condition in Cakephp ?

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(

Group By in Cakephp

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

Cake bake in Cakephp 3

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

prev 1 2 18
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: