Create Database, Tables by using the phpMyAdmin

PHP WAMP is a compact pack of the Window,Apache,MySql and PHP, when you install the WAMP then by default it installs the phpMyAdmin tool as well. phpMyAdmin is a tool by which you can manage the MySQL databases,tabes and it provides the interface so that you can do the

Enable gzip Compression In PHP

Suppose you want to improve the speed of your website, it is a good to use PHP gzip compression for the frontend. Here in this post I am describing how to use gzip in your web page. This way you can easily include gzip compression on your web page.

Word Limit of a string In PHP

Sometimes, if we need limit in the text, but if you are using the inbuilt functions of php then it breaks the words, and count only characters not the word. In this post you will see the very useful PHP function which can be used in limit of word.

Refresh Page In PHP

In PHP sometimes you want to refresh the page you can do it by the javascript as well as by the PHP itself. Here I am going to refresh the page by using the "meta http-equiv".

Finding slower part of the code in PHP

Sometimes we analyze that our PHP script is running very slow, we, just think that may be reason is our loop and the fetching data through the sql query etc . But we do not know that where is actual problem? We actually don't know in which function or

Difference between API and Web services

An API is an Application Programming Interface, means by which third parties can write code that interfaces with other code. OR An api is a collection of class which provide you some functionalities like google api gives you the opportunity to work with the google search.

Difference between unset() and unlink() in PHP

In PHP unlink() is a function for file system handling, unlink() is used to delete files (physical). Suppose you have uploaded a file and wants to delete this file through the coding then unlink() function is used to delete the file, Suppose you have an image with the name

Remove Zero From Array In PHP

If we are working with the PHP array then there is some condition occurs when we want to remove the empty elements from an array. It is very easy and you can remove the empty elements of the array by using array_filter() without a callback function.