How to Insert Multiple records in Nodejs

We can insert multiple records into database using NodeJS. How to Insert Multiple records in Nodejs Download NodeJs in your system using : https://nodejs.org/en/download/ We will use MySQL for Insert Query and PhpMyAdmin to maintain our Database. In the place of MySQL We can use Mongo DB as well. This way we can insert data …

Form Validation in ReactJs

We all know how Validation is very important in our Website . In this article, We will understand how to Validate Forms in React.Form Validation in ReactJs We can use any form validation package or we can use our custom code for the FROM Validation in ReactJs. Yup validation very good form validation package in ReactJs …

Admin Dashboard in React JS

Admin Dashboard in React

Today, We will see how to make a simple Admin Template in React js using Bootstrap 5. Admin Dashboard in React JS. As we know that The Bootstrap is a framework of CSS. You can use Material UI or any other design framework for the Admin dashboard. Admin Panel in React JS Installation of Packages …

How to Export Data to Excel in ReactJS

ReactHTMLTableToExcel

Today We will see how to Export Data to Excel in ReactJS. I am using Fake JSON Data. How to Export Data to Excel in ReactJS. Export Data to Excel Sheet in React We can convert React table data into an Excel sheet using a react react-html-table-to-excel package. All the data in the table are coming …

File Upload & Store in PHP 8

File upload in php

In this blog, We will learn how to upload a File using PHP 8 and Store it with OOPS Concept. File Upload & Store in PHP 8. How to Upload File in PHP8 with PDO How to implement file upload validation before sending it to a web server. We will do a proper validation in …

Send Emails with Node.js & React Js

Node.js - Send Emails via SMTP with Nodemailer

Today, I will share with you the logic behind email sending in MERN App. Send Emails with Node.js & React Js. How to MAKE an Email Send API in Nodejs We can send emails using Nodejs but for the front-end, we required any front-end technology like VueJs, AnuglarJs, or Reaactjs. So I am using Reactjs …

Theme Color change in React JS

Theme color change in React

I recently had a project with a requirement to support theming on the website. Theme Color change in React JS We can change the background color of the body tag using react. It is a very easy process in which we can change the color of our project. I am using bootstrap to design the layout, You …

Records display in Material UI Table

Records show in Material ui Table

We can Show multiple records in Material UI Table using React. Records display in Material UI Table. I am using simple Javascript Fetch Techqniq for fetching data from this URL https://jsonplaceholder.typicode.com/users. You can use AXIOS as well for fetching Records from any external URL Learn more about fetch() https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch You need to install material UI …

File Upload in Nodejs

We can upload one or many files in a folder using Nodejs and We also can save its name into a Database. File Upload in Nodejs. I am using Node framework EXPRESS and multer for file upload into a folder. You can install the express framework by using the below command npm install express Install …