Problem: If you are developing a web project that includes sending emails to users, then it is very important for you to know if those emails are being read or delivered to those users. For example, if you are sending marketing emails to your subscriber’s list, then it is essential for you to know that …
Read More “How to check if email is read by user – PHP, Gmail, Outlook”
Either you are sending an email in Laravel via normal form POST request or via AJAX. This tutorial will help you add functionality where you can preview Laravel email before sending it. If you are adding functionality to your Laravel project where you need to send an email, it is very important during the development …
Read More “Preview Laravel email before sending – PHP, AJAX”
A Laravel blog website along with an Android app is created with an admin panel. It uses the design template from https://bootstrapmade.com/. It has the following key features: Google Adsense approved The project is tested with Google Adsense and it was approved by Google for monetization. You just have to link with your Google account …
Read More “Laravel Blog (Website + Android app) with Admin Panel”
In this article, we are going to discuss, how you can hide HTML tags from inspect element. It prevents the HTML tags from rendering in the browser so they won’t be visible in “View page source” or “inspect element”. When developing a web application, sometimes you write a code to do something. But after some …
Read More “Hide HTML from inspect element – PHP”
Introduction In this article, we are going to introduce you to a project “File transfer web app” we created in Node JS and Mongo DB. It is a file transferring web app that allows you to send files to your colleagues, friends, clients, etc. Features Free Premium Login and registration Yes Yes Upload files Yes …
Read More “File Transfer Web App (Node JS + Mongo DB) – Express”
We have created a simple image sharing web app in Node JS and Mongo DB. It covers the following features. Features: Video tutorial: Search feature:
In this article, we are going to teach you how you can create a real-time customer support chat widget on your website. Users will be able to chat with the admin and get instant replies. All messages will be stored in the MySQL database. By real-time, we mean that users or admins do not have …
Read More “Realtime customer support chat widget – PHP, Javascript, MySQL, Node JS”
In this article, we will teach you how to create a feedback pop-up bootstrap modal for users on the bottom right of the screen when the page is fully loaded. The pop-up modal will be created in bootstrap and will display a star rating and an input field to get the user’s feedback. Once submitted, …
Read More “Feedback pop-up bootstrap modal – Javascript, PHP & MySQL”
In this article, I am going to teach you, how you can prevent the browser cache from keep displaying the old content. We will ask the browser to update your cached files and fetch the fresh content. Suppose, you have written a Javascript file named “script.js”. Now, you added some functionality code in that file, …
Read More “Prevent browser cache from CSS, JS, and image files”
You can easily get the URL parameter in PHP using PHP’s built-in global $_GET array and pass the associative index as the name of the parameter. But getting that value in Javascript is a bit tricky. So I am going to show you a method that is very simple and will always work.