Tag: CRUD

NodeJS – Simple CRUD APIs with MySQL

In this article, I will do a simple CRUD APIs in NodeJS, Express and MySQL. We learn how to create restful (create, read, update, delete) api in NodeJS.   API End Points, test on Postman: GET /learns: Give all learns stored in database GET /learns/{id}: Give a specific user with id. POST /learns : Create a […]

Read more...

PHP – MVC CRUD and Connect to MySQL using PDO

Basic knowledge is always very important, in this article I will introduce to you how to use the PHP – MVC model, using PDO to connect to MySQL. What is PDO?  It is an acronym for “PHP Data Objects”. Until now, the functions used were divided according to the type of database. For example: – When connecting […]

Read more...