Simple Login System in PHP Without Database

This is a tutorial on how to create a simple login system using PHP without any database. This system can be use to protect multiple...

How to Make Pagination Work with WP_Query Custom Loop in WordPress

Wordpress default pagination does not work with custom loops created with WP_Query out of the box. So if you have a custom query like this...

Creating a Full Screen Overlay using Jquery and CSS

Recently i had to work in a project where this full screen overlay had to be shown with just a message in the middle of...

How to Add Bootstrap 4 to an Angular 6 App

Depending on your preference there are several methods to add bootstrap styling to Angular 6 app. Method 1: This is the simplest way using CDN links for...

Remove an Element from an Array in Javascript

The simplest way to remove a particular element from an array in Javascript is to use the "splice()" method. First find the index of the element...

Fix MySql Server Gone Away error While importing Blob content

Typically this error occurs when a column/field contains binary objects. Binary large objects (BLOB) packet size is usually bigger than other type of content as...

Adding Push Notification to Your Web App

A push notification is a message that is pushed from a back-end server to front end - usually displayed as a pop up alert on...