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 <?php $cache_file = 'data.json';…
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 need to search for a public account named LetzCricket…
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 steps using PHP. 1. Create Public Account…
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,…
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. 1. Download FaceDetection library…
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 Source…
Minify 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…
How to Embed Google Form in Your Website ??
In this post, we are going to learn to embed a Google Form in our website. We will embed a PHP script in our view file. The PHP script which we have embedded in our page will redirect to the Google Form link. Source Code for index.php <!DOCTYPE…
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 is the full source code : <h1…
Encrypt/Decrypt String using a Private Secret Key with PHP
In this tutorial, we are going to learn how to encrypt and decrypt a message using a private secret key with PHP. <h1 style="text-align: center;">Encrypt/Decrypt String using a Private Secret Key with PHP</h1> <?php function…
Realtime Air Quality Index (AQI) Fetch API
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; }…