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

Sending structured message and keyboard menu in Viber chat bot

In this post, we will develop a Viber chat bot similar to that of chat bot of LetzCricket. Finding Chat bot First of all, we are going to find how the chat bot of LetzCricket looks like. For this, we... Read more

Build a complete viber chat bot using php

Chat Bot is very popular these days. With Chat Bot, you can connect to your customers with Deeper Interactions and grow your business. In this post, I am going to share how to develop Viber Chat Bot in 6 simple... Read more

Backup/Restore MySQL database using PHP

MySQL is an open-source relational database management system (RDBMS). MySQL is a central component of the LAMP open-source web application software stack. LAMP is an acronym for “Linux, Apache, MySQL, Perl/PHP/Python”. In current scenario, databases constitutes a major backbone in... 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

Face Detection using pure PHP: No OpenCV required

Face Detection using pure PHP: No OpenCV required
In this post, we will be implementing a Face Detection library in PHP. We don’t need any libraries like OpenCV for this Face Detection to work. Use of already trained data will be used to detect face in an image.... Read more

Access WebCam using JavaScript [Updated]

Access WebCam using JavsScript
In this post, we are going to learn to access WebCam using Javascript. We will use getUserMedia to access WebCam and show the video in our webpage. Full Source Code to Access WebCam using JavaScript <center style="margin-top:4%;"> <h1 style="margin-bottom:10px;">Access WebCam... Read more

Get Website Rank using Alexa API

Alexa Internet, Inc. is an American web traffic analysis company based in San Francisco. It is a subsidiary of Amazon. collects data on Internet browsing behavior and transmits them to the Alexa website, where they are stored and analyzed. Full... Read more

Minify HTML in Codeigniter using Hooks

Compress HTML in CodeIgniter using Hooks
HTML Minification is the removal of unnecessary characters and lines in HTML code. Indentation, comments, empty lines, etc. are not required while rendering in HTML. Trimming these details can save download file size not only without affecting the output but... Read more

Show toast/snackbar in a webpage using CSS and JavaScript

In this post, we will be learning to display a simple toast message or snackbar in a webpage using CSS, HTML and JavaScript. Full Source Code :   <style> #snakbar{ visibility:hidden; min-width:250px; margin-left:-125px; background-color:#333; color:#fff; text-align:center; border-radius:2px; padding:10px; position:fixed; z-index:1;... Read more

Moving Car Animation with Javascript and CSS

Moving Car Animation with CSS and JavaScript
In this post, we will be going through a simple moving car animation using only Javascript and CSS. We rotate wheels with CSS and move car using JavaScript. Full Source Code : <h2>Moving Car with JavaScript and CSS</h2> <style> body{... Read more

Animate SnowFall in your webpage with CSS and JavaScript

In this post, we are going to learn to animate a snowfall in webpage using CSS and JavaScript. The full source code for this animation is as follows :   <script> var snowmax=75; var snowcolor=new Array("#4285f4","#cc181e","#008000"); var snowtype=new Array("Arial Black","Arial... Read more

Get city and country and Client IP using JavaScript

In this post, we are going to learn to get city and country and client using JavaScript. Sample JavaScript to get city and country and Client IP using JavaScript   <div id="IP">Loading...................</div> <div id="Country">Loading...................</div> <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script> <script type="text/javascript"> $.get('https://ipinfo.io',function(response){... Read more

How to create a WiFi Hotspot from your PC using Command (No third party tools required)

Create Wifi Hotspot from your PC using Command No any third party tools/softwares required Set Hosted Network Command netsh wlan set hostednetwork mode=allow ssid=TheNetwork key=123456789 Start Hosted Network netsh wlan start hostednetwork Stop Hosted Network netsh wlan stop hostednetwork  ... Read more