A Beginner’s Guide to Learning JavaScript

JavaScript is one of the most popular and powerful programming languages used for web development. If you’re just starting to learn it, don’t worry! In this article, we’ll guide you through the basics in a simple and easy-to-understand way. What is JavaScript? JavaScript is a programming language that helps make websites interactive. It allows you […]

Getting Started with Redux in React.js

Redux is a popular library for managing application state in JavaScript apps, and it works seamlessly with React.js. It helps you keep your app’s state predictable and organized, especially as your app grows larger. Let’s walk through how to use Redux in React in a simple and approachable way. 1. What Is Redux? Think of […]

How to set up the Permission on Laravel file structure.

Permissions are usually denoted with three digits, each representing a different set of permissions: Each digit can be a number from 0 to 7, which corresponds to a combination of read (4), write (2), and execute (1) permissions. For example, a permission of 755 means that the user can read, write, and execute (4+2+1=7), while […]

How to see the exact IP Address when using cloudflare?

Hi everyone, When you are using Cloudflare it will mask the Client Ip address, So cloudflare provide us variable that help to find the actual IP address of users. Check below to code the variable of Cloudflare Ip address. If you are using PHP, then you can do use the below code to get the […]

Configuration setting for .conf file in apache

Hello everyone, You are here it means you stuck in your server setting, so please add this code in your /etc/apache2/sites-available/ directory for configuring your domain to your server. After saving this file with nano command, or whatever your using, just enable your site by using below code. Now just reload your apache, by using below command. Now check […]

How to block file download outside from Website using .htaccess

Hi all! Below is the code, I am sharing for restricting and blocking the file download from outside of your website. You can put the below code in .htaccess file to restrict the access. This code will block & restrict the access of your file’s access outside from your website. If you want to block […]

How to check checkbox is checked or not using jquery

FacebookTwitterLinkedinPinterest

How to send Emails using Sendgrid in PHP?

In this tutorial, we are going to know how to send emails using Sendgrid in PHP. SendGrid is a customer communication platform marketing email. For PHP, SendGrid also provides its library that can be used for calling the SendGrid API. Here is the Step you have to follow for API Setup on SendGrid:- Before using […]

How to use JWT in CodeIgniter for creating API Authorization token

In this tutorial, we are going to learn, how to use JWT in Codeigniter for creating API Authorization token. We will use a JWT Class in CodeIgniter for encoding and decoding. Purpose of Authorization token is to an authorized API call to secure access.  JWT:- JSON Web Token proposed in December 2010 for HTTP Authorization headers […]

HIGH LEVEL LANGUAGE {HLL}

High level languages are easier for a human programmer to understand. They are generally not dependent on any particular computer machine. Advantages of High Level Languages There are many advantages of high level languages. These are as follows: a} Understandability programs written in these languages are easier to understand and read than those in assembly […]