Decode HTML entities in WordPress PHP

In this article, we are going to tell you, how you can decode HTML entities in your WordPress post using PHP. For example, if you write © in your blog post, it will be displayed as ©. To do that, you need to create a simple WordPress plugin. Go to your “wp-content” folder, then to …

Ecommerce website in MEVN stack

It is a single-page ecommerce website developed in Vue JS. Vue JS is an open-source Javascript framework specifically built to design user interfaces and is widely used for creating single-page applications. Node JS is a Javascript run-time environment developed for creating the backend of applications. Its framework Express is widely used for creating APIs. It …

Share local storage between websites – Javascript

In this article, we are going to teach you, how you can share local storage between websites using Javascript. Local storage is not accessible even within subdomains. So if I set the value in one subdomain, it will not be accessible in another subdomain. Video tutorial: To share the local storage value between websites, first, …

Dynamic constra template – Vue JS & Laravel

“Constra” is an HTML static template in HTML & CSS. It is an HTML template designed for the construction website. The businesses that allow construction-related services. We have converted to a dynamic website using Vue JS and Laravel. You can check out the following tutorials. In these tutorials, we have shown you, how to convert …

Deploy Node JS app on VPS or Dedicated server

In this article, we are going to teach you how you can deploy the Node JS app on a VPS (Virtual Private Server) or a dedicated server. Make sure you have Node JS, NPM (Node Package Manager), and PM2 (Process Manager) installed, you can run the following commands to see if they are installed. If …

Show WordPress posts in PHP website

In this tutorial, we will teach you how to show WordPress posts in your PHP website. Make sure you run this code from inside your server where the WordPress blog is hosted. This means that if your WordPress blog is hosted on the main domain like “adnan-tech.com”, then this code should be on any of …

Adult image validation – PHP

In this article, we will teach you how to have adult image validation in your PHP website. Suppose you are creating a website where you allow people to upload images. And some people start uploading nudity images. Now you want to stop them. Video tutorial: For the sake of simplicity, we are creating a simple …

How to create nested modules – Node JS

In this article, we are going to teach you, how you can have nested modules in your Node JS project. Nested modules help in splitting a large code-base into smaller files. This helps in debugging and scaling easily. Video tutorial Let’s say that you want to access the following URL: You want to have a …