
Search In
Hellow Reader's ,
In this Blog you can learn how to secure your password in DB with Blowfish password hasher. it is very difficult to hack. you can use blowfish hasher by following these steps.
First use below line in your User (Model)
App::u
CakePHP will save model data as a snap to your database, User's Data will be ready to be saved in database it should be passed to the model’s save() method using this, in the giving format below. This is Controller action that uses a Cakeph
Hi Readers,
Today I will be discussing about the limitation of virtualfields and how can we overcome it's limitations. Firstly, we can not use virtualfields in associated models for conditions,fields arrays or order. Doing so will generally an SQ
Naming convention in cakephp
To get Maximum advantages from Cakephp then we need to follow some basic naming convention that cakephp rules says.
Naming convention follows principles of following section of cakephp
Database name
Controller file n
There are four ways to install a plugin in CakePHP->
• Plugin install through Composer
• Manually plugin install
• Plugin installed As Git Submodule
• By Git Cloning
1- Manually
To install a plugin manually in CakePHP, you just have to make a p
In one of my project I have two table with simple relation
Division (id, title) - hasMany Staff
Staff (id, division_id, name, jobtitle)
So. Now I need to get some info like: I need to get all Staff where birthday today, and get result like
After we have learned how to create an Admin Panel for a project in cakephp see the link. Now in this tutorial we will learn how to enable/disable different actions such as add,view ,edit, delete, records in a table say “posts” or increase/decrease t
This blog tutorial will explain CakePHP find condition & query examples. let's take a look at some CakePHP find conditions. First, a very simple CakePHP find query that retrieves all records from the User model. Example: $this->User->fi
Hi Readers,
Welcome to FindNerd, today we are going to Discussion on Database Access and ORM in CakePHP 3.
The new version of CakePHP comes with lots of new features and changes in it.
To access the database in CakePHP 3 there are two main objects.
Data validation becomes an important part of any of the application. It helps to make it sure that the data input by the user is proper or not.
Defining the validation rules in any application makes the form handling easier. Validation differs from
