Posts

Showing posts with the label CRUD

PHP MySQL REST API CRUD Tutorial

Image
PHP MySQL REST API CRUD Tutorial Introduction         I was looking for a simple Full Stack PHP CRUD REST API Tutorial online, but there was not one tutorial which had both the UI and the REST APIs together. In most of the tutorials either the UI only is explained or else the REST APIs are explained without the UI. Hence I decided to come up with a simple post on this which can be used as a base to build your own full stack PHP app.         In this post, we will build an Employee Dashboard App which can be used to view, create, update and delete Employee Data. We will be building the corresponding CRUD APIs.  PHP         PHP (Hypertext Preprocessor), originally stood for “Personal Home Page” and is a scripting language used for web development. Advantages of PHP include: State: Each and every web request starts from a completely blank slate. Concur...

Golang CRUD REST API MySQL Tutorial

Image
Introduction         I was searching online for a complete tutorial on Golang CRUD REST API integration with MySQL database with all the CRUD operations and I found many confusing posts. Some post did not have all the CRUD operations, some gave complicated approaches and some had other general code issues. Hence I have come up with this post to give you a comprehensive overview of all the CRUD operations. Please feel free to use my application as a base to build your own application. Golang         Go or Golang, as it is called, from their website , is an open source programming language that makes it easy to build simple, reliable, and efficient software. It is gaining popularity due to the following features: Fast: Golang is a compiled language, the code written is directly translated into formats that any processor understands.  Lightweight and minimalist language...

React, Highcharts and Spring Boot Integration

Image
React, Highcharts and Spring Boot Integration Introduction         If you search for a tutorial online about React, Highcharts and Spring Boot Integration, most of the times you end up with tutorials which are not that that easy to follow. Hence I decided to come up with this blog post to explain the concepts of integrating React, Highcharts and Spring Boot in  simple language which is very easy to follow. This blog post will give you a comprehensive overview of the following: Building a simple React App Integrating the React App with a Spring Boot Application and using CRUD operations Integrating React, Highcharts and Spring Boot Application to view charts React         React is one of the most popular JavaScript libraries for building user interfaces. To know more about React, please check React Website . Highcharts         Highcharts is a software library, written in pure JavaSc...