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

Search In

How to join tables and find by conditions in Cakephp 2 ?

How to join tables and find by conditions in Cakephp 2 ? There are 3 tables Venues, Venues type and Venue Opening Days. First and the most preferred way is use associations in the Model like hasMany, BelongsTo. Second way to join tables is to use th

encode password before saving it to database

Hello Readers. Here is small code to encode password before it is saved into database. Add the following code in your Model file User.php App::uses('BlowfishPasswordHasher', 'Controller/Component/Auth'); class User extends AppModel { public

Naming convention in cakephp

   In cakephp,  whenever you want to create an application, You have to create following three files : Model. Controller. View files. For all these files, there are some naming convention standard you must follow. MODEL NAMING

How to protect CakePhp application against Sql injection in 2.x version?

Hi Reader's, Welcome to FindNerd, today we are going to discuss How to protect CakePhp application against SQL injection in 2.x version? Basically SQL injection is a technique which is used for attacking to data-driven in a web applications. It

CakePHP Folder Structure

After downlaoding and extracting CakePHP folder, one should see the following files and folders: app cake vendors plugins .htaccess index.php README Three main folders in which one will usually work: 1.The app folder is one where the applicat

How to change user password in CakePhp using Auth

Hi All, In this blog we will discuss how to change the password in cakePhp by using Auth. Firstly, in your model you have to define a function beforeSave which will hash your password to auth password, you can do this by writing the below code: pu

Display validation messages of multiple models in cakephp

First need to create a model relationship lets assume that a user registration form and for each and every user has a profile.so there is one to one relationship between user model and profile model. <?php class User extends AppModel { var $n

Association in cake php

Association means relationship, It is a way that two table are connected to each other or linking model together, in cakephp the links between models are handled through association. User can understand it from the following table.    &nb

Association in cakephp

Association is basically linking two models of the database. It is very useful. After applying association you don't need to join the tables from the controller and fetch the data of another model from the controller. The four types of associa

find and save the records by using cakePHP models

make a controller name Pagescontroller.php and paste the following below code <?php class PagesController extends AppController { public $name = 'Pages'; /* Use Customer model */ public $uses = array('Customer'); public functi

1 12 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: