To have your app restfully is a good way to increase your app audience. REST API in CakePHP 3 with Mysql is an XML-based method to allow access to your app using HTTP headers. It is light, simple, and have well-organized formats that organize even a very complex application. CakePHP[...]
In this tutorial, you will learn how to make a login and registration system using CakePHP 3 and the Auth component. I had made in a previous tutorial a simple CRUD system in CakePHP3 where you can add, get, delete, and update topics. I will improve it to have a[...]
In this article, you will learn how to configure mail transport options, make mail headers, create email templates, and create reusable emails in cakephp3. Here we use SMTP (Simple Mail Transfer Protocol) to send emails using CakePHP. These days it is very important to send emails from our web application[...]
Validating your data before saving it is an important process. If you have a non-validated form that gathers data about users, products, topics etc, you might find strange data; invalid phone numbers, prices, birthdates etc. Not only invalid data but also having many errors when your system tries to handle[...]
CakePHP is a powerful and robust PHP framework that uses MVC design patterns. Before you can start your first CakePHPcode, you should understand what MVC is. MVC stand for Model View Control. It means that your application is divided into three parts models, views, and controllers. This tutorial will explain[...]