
Search In
Sanitization in Cakephp 2
Sanitize in Cakephp is used to rid user submitted data and any other unwanted information. Sanitize can be used anywhere in controllers or models. Before using Sanitization, you need to import its library by calling i
Suppose we have a table name player having field id, name of player, images, etc having some data .Now we have another table name playergallery having field like id, player_id, images, etc here player_id is foreign key and it is referencing to table
Upload multiple images using jQuery Ajax / Drag & Drop Images
Hello friends, welcome to findnerd. Today I am going to tell you how to upload multiple images using jQuery and Ajax in Cakephp 3. You can also drag and drop images and upload
To implement drag and drop in cakephp using jquery, you need to follow following steps :-
Step 1: Make index.ctp and add following code in it :-
<head>
<style>
#sortable-list { padding:0; }
#sortable-list li { padding:4
Suppose we have a table name player and in player table we have field like id , image,player_name, status, etc. Suppose data inside fields are id=1, name=ram, image=abcd.jpg and status=0, Now we want to change status to 1, and again we have to
A Login Form that uses cakephp auth component to login and logout and access is denied if user is not authorized.
step 1: users database table.
First create users table in your database:
CREATE TABLE users (
`id` INT UNSIGNED AUTO_INCRE