Upload Files in Chunk using PHP and JavaScript

Often, we need users to upload files via a webpage. There’s not much challenge if the file is a simple text file or a small image file. The real challenge arises when... Read more »

How to Zip/Unzip files using PHP

Compressing files while transferring from one location to other is always a good option. In case of web experience, compressing files means reducing the file size by nice margin resulting in low... Read more »

Remove index.php from Codeigniter using htaccess

In CodeIgniter project the index.php file will be included in your URLs by default. However, we would want to remove index.php from our URL to make it look clean as well as... Read more »

Hangman Game in PHP : Complete Source Code

Hangman is a paper and pencil guessing game for two or more players. One player thinks of a word, phrase or sentence and the other(s) tries to guess it by suggesting letters... Read more »

How to run a Linux command in background ?

Running a command in the background can be useful when the command will run for a long time and does not need supervision. It leaves the screen free so you can use... Read more »

Multiple File Upload with HTML and PHP

We might have been in situation where we need to upload multiple files from a form. If you are in same situation, then you are in right place for the solution. In... Read more »

Install Laravel on Ubuntu with 4 simple steps

If you are looking to start your journey of Laravel, then this article is for you. You will learn to install Laravel one of the most popular PHP Framework currenly in Ubuntu... Read more »

Responsive FileManager as Standalone File Manager

In this post, we are going to implement Responsive FileManager as a standalone filemanager. We will be using JQuery along with Fancybox JavaScript and CSS for this. Source Code : <link rel="stylesheet"... 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... Read more »

Calculate Distance between two location with Latitude Longitude using PHP

In this article, we will be writing a simple PHP function to calculate distance between two points with Latitude and Longitude. The distance is then converted into various units including miles, feet,... Read more »