How to Import CSV to MySQL using PHP ?

Import CSV data into MYSQL in PHP

One of the challenges that PHP developers face is the data formats that are often not directly compatible with the database used in the projects. In many cases, this database is MySQL. However, the data from the client’s end is often delivered in Excel or CSV ( two formats that … Read more

Easiest way to Detect Browser in PHP

PHP Detect Browser

Now a days people are started detecting your browser and Operating system details in their web application for debugging, system usage analytics & other purposes. In this tutorial we are going to see how to Detect Browser & Operating System (OS) details in PHP. By using PHP’s native function we … Read more

Javascript Check Internet Connection

How to Check Internet Connection Exists or Not using Javascript

99% of people used to type google.com immediately after opening their web browser to check internet connection. This is very true in our morden world. Now a days we can’t live without an Internet. While browing, If you lose the connection then you will feel sad and unhappy till the … Read more

PHP Text to Speech using Amazon Polly API

php text to speech amazon polly

Amazon Polly is a Web Service used to convert any Text to Speech in real time. Also there is an option to download into MP3 format. This text to speech service that uses advanced machine learning technologies to convert speech that sounds like a original human voice. checkout my recent … Read more

How to Implement Memcached in PHP CodeIgniter

Memcached in Codeigniter

In this post I would to share how to install memcached caching system in amazon ec2 cloud server and access it via php codeigniter framework. We can store any data like plain text, json, array & html contents into the server memory. Stored can be accessible by using . About … Read more

Bootstrap Table Fixed Header using CSS

Bootstrap Fixed Header Table using CSS

Now a days web developers are making responsive html tables. Responsive table alone won’t be nice when you have large number of rows and columns in the table. If any table that has thousands of rows and more than 10 columns then height of the table is always larger than … Read more

Javascript Current Date and Time in Real Time

Javascript Current Date and Time

In this post we are going to see how to get current date and time in javascript. Javascript get current date time is useful to validate date within your client side application and also used to like facebook such as Good Morning! Have a great day, Good Afternoon and Good … Read more

Angular 4 – Installation & Setup in Local Environment

Angular 4 – Installation and Setup in Local Environment

For building Angular Application we can use many languages like JavaScript, ES5, ES2015(Known as ES6), Typescript, CoffeeScript and Dart (Non-JavaScript language). Typescript is the most commonly used language to develop Angular Applications. Typescript is an open Source language and which is a superset of JavaScript. As the name says it … Read more