
Search In
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
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
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
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
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
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
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 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 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
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