Posts

Showing posts with the label php

PHP + Vue.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, Vue.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 will we 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: -Update User: We divided this tutorial into two parts.   PART 1 - Rest APIs development using PHP PART 2 - UI development using Vue.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 NOT NULL , `first_n