Posts

Showing posts from September, 2021

PHP + React JS + MySQL CRUD Example

Image
Hello everyone, today we will learn how to develop a full-stack web application that is a basic User Management Application using PHP, React JS and MySQL. The GitHub repository link is provided at the end of this tutorial. You can download the source code. After completing this tutorial what we will build?   We will build a full-stack web application that is a basic User Management Application with CRUD features: • Create User • List User • Update User  • Delete User -Add User: - Retrieve all Users: - View User: -Update User: We divided this tutorial into two parts.   PART 1 - Rest APIs Development using PHP and MySQL PART 2 - UI development using React JS PART 1 - Rest APIs Development using PHP Project Directory Setting Up Database Create Database "user_db" and create table "user" -- -- Database: `user_db` -- -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `id` bigint ( 20 ) UNSIGNED