Building a Dynamic Premier League Table Using PHP and Bootstrap

The English Premier League (EPL) is one of the most-watched football leagues in the world, with millions of fans closely following their favorite teams and players. Whether you’re managing a sports news website, a football blog, or a fan-driven portal,... Read more

Building a Weather Dashboard using OpenWeatherMap with Real-Time Location

In today’s digital world, staying updated with the latest weather conditions is essential. While there are many weather apps and websites, creating a personalized weather dashboard for your website can provide a more engaging and customized experience. In this tutorial,... Read more

Create your own Time Machine for Websites

The digital world is constantly evolving, and websites that once ruled the internet can now be lost in the waves of time. But what if you could revisit a website as it appeared on a specific date in history? Enter... Read more

10 Funny PHP APIs

PHP (Hypertext Preprocessor) is a server-side scripting language often used for web development. An API (Application Programming Interface) allows one software application to interact with another, usually through a set of defined requests and responses. When it comes to PHP,... Read more

[Updated] Instagram API to fetch User Profile, Followers, Following

Have you gone through one of our video tutorial : Simple Instagram API that fetches User Profile, Followers, Following, Images, Posts, Likes , Shares using JavaScript for fetching Instagram User profile, followers, following and posts. Most of the viewers were... Read more

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; } .box{ background:bisque; border-radius: 15px; box-shadow: 3px... Read more

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 :... Read more

English to Hindi / English to Nepali Typing Using Google API

In this article, we are going to integrate Google Transliterate API to convert English text to corresponding text in other language like Hindi or Nepali. For this, we will need two files jsapi.js index.html index.html <script type="text/javascript" src="jsapi.js"></script> <script type="text/javascript">... Read more

Free JSON API for News and Blog Articles

In this article, we are going to implement a Free News API provided by NewsAPI.org. Please provide credit to https://newsapi.org/ while using the API for non commercial use. In case you are using for commercial purpose, check their pricing. Source... Read more

Cryptocurrency : Get Current Bitcoin Price using PHP API

According to Wikipedia, Bitcoin is a cryptocurrency, a form of electronic cash. Cryptocurrency is basically a digital currency in which encryption techniques are used to regulate the generation of units of currency and verify the transfer of funds, operating independently... Read more

PHP API : Get Weather Report and Forecast

In this post, we are going to use PHP API to get current weather report at a location along with 5 days weather prediction. Click Here for Demo Full Source Code to Get Weather Report and Forecast Using PHP API... Read more

Using Graph API to get Facebook Share Count

Using Graph API to get Facebook Share Count
In this post, we are going to learn how to fetch Facebook share count using Facebook Graph API. According to Facebook, Graph API is the primary way for apps to read and write to the Facebook social graph. All Facebook’s... Read more

Instagram API to fetch User Profile, Followers, Following, Posts

Simple Instagram API that fetches User Profile, Followers, Following, Images, Posts, Likes , Shares using JavaScript #Instagram #API #InstaAPI Full Source Code : <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <style> .posts{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-wrap:... Read more

Get Geo Location Details of Client using PHP

In this post, we will be learning to get the geo location details of client using PHP. We use API from geoplugin.net to get the geo details of a location based on the IP Address which request the page. Here... Read more

Realtime Air Quality Index (AQI) Fetch API

Air Quality Index
Full Source Code for Fetching Realtime Air Quality Index (AQI) based on location. <style> .wrapper{ display: flex; flex-wrap: wrap; } .green{ background-color: green; } .orange{ background-color: orange; } .gray{ background-color: #615f5f; } .yellow{ background-color: yellow; color:#000 !important; } .red{ background-color:... Read more