BS / AD Date Converter using PHP
In this tutorial, we are going to use a PHP library NepaliCalender.php to convert date from AD to BS and BS to AD. Download NepaliCalender.php library from here : NepaliCalender Use the following function to convert English Date (A.D.) to Nepali Date…
Google Analytics Realtime Traffic Viewer using Analytics API
In this tutorial, we are going to develop a complete Google Analytics Realtime Traffic Tracking tool using Analytics API. UPDATE : New tutorial is made for GA4 Realtime API :…
Get random jokes with PHP using Joke API
In this tutorial, we are going to get random jokes with Joke API using PHP. Source Code : <style type="text/css"> body{ background-color: aliceblue; } .box-container{ display: flex; justify-content: center; align-items: center; height: 100vh; }…
Loan EMI Calculator and Payment Schedule Generator using PHP
An Equated Monthly Installment (EMI) is defined as “A fixed payment amount made by a borrower to a lender at a specified date each calendar month. Equated monthly installments are used to pay off both interest and principal each month, so that over…
Using Authentication Header with file_get_contents in PHP
In PHP, file_get_contents() function is commonly used to get content of a file or a url and it works like a charm in normal scenario. If in case, the URL or file endpoint is under htaccess authentication, issue arises. Learn How to Password Protect…
Simple News Ticker using JQuery Plugin
Easy Ticker is a jQuery plugin helps you create a highly customizable, cross browser, flexible and infinite news ticker on your web page. Full Source Code : <!doctype html> <html> <head> <meta charset="utf-8"> <title>Simple…
Simple HTML parser using PHP
A simple PHP HTML DOM parser written in PHP5+, supports invalid HTML, and provides a very easy way to find, extract and modify the HTML elements of the DOM. jQuery like syntax allow sophisticated finding methods for locating the elements you care about.…
Random Quotes Generator using PHP API
The following source code demonstrates a simple PHP API to get random quote. We simply need to make a GET request to the API endpoint : https://api.quotable.io/random and we will get a random quote in response. Full Source Code : <?php $api_url =…
Create Custom YouTube Playlist using PHP and JavaScript
The following source code enables us to create a custom playlist with just the videos that we want to play. Full Source Code : <link rel="stylesheet"…
QR Code Reader using PHP Library
In this article, we are going through a PHP library to detect and decode QR-codes. Installing QR Code Reader/Decoder PHP Library The recommended method of installing this library is via Composer. We need to run the following command from the project…
Convert Number into words using PHP
In this article, we are going to learn to convert number into words using PHP. We have a PHP function which simply returns the word for the corresponding numeric value passed to it. PHP Function to convert number into words <?php function…
Prevent Too Many Request From a Client using PHP
In certain scenarios, we might need to make sure that a client is not allowed to request a page for multiple number of times within a period of time. The following sample PHP code exits the execution when a client requests the same page more than once…
Calculate Age from Date of Birth (DOB) using PHP
We often need to calculate age of an individual based on his/her date of birth in normal web applications. The basic idea is to calculate the difference in days, months and years between current date and provided date of birth to calculate the age.…
Get Youtube embed code from video URL using PHP
In this article, we are going to learn to create Youtube Video Embed code from Youtube Video URL using PHP. The following source code provides PHP functions to get Youtube video id from video URL and pass it to get the embed code eventually. …