In my previous post i had posted how you can make a zip file in Php. But i know many of you are also looking to unzip a zip file in php. So here i am back with the solution….
Author: Ankur Sharma
-

How to zip a file in php (php zip)
For my recent work i was searching for a PHP class through which i can easily zip any number of files and folder into one single zip file. I search all around the web and finally found it inside the…
-

How to make a jQuery Ajax post request
Still many of you don't know how to use Ajax, some of you who know how to use it are using it by the old XMLHttpRequest() object. Do you know jQuery makes it really easy to make a Ajax request….
-

How to use WordPress login in your plugin or theme
Many of you wanted to use the Wordpress login in your wordpress plugin or theme. Wordpress made it really easy so that user can login to wordpress by using your wordpress plugin or theme. How to do it? Just be…
-

How to add a WordPress drop down menu to your wordpress theme
Many times you install a theme which either do not support a custom wordpress menu or have only one wordpress custom menu and you wish to add a custom wordpress drop down menu to the theme but you don't know…
-

Important Microsoft SQL Server Queries
Here i am going to tell you all the important queries used in Microsoft SQL Server. Just go through this page and you will become master in Microsoft SQL Server because all the queries used in daily programming are briefly…
-

How to write Javascript Regular Expressions (RegEx)
If you have searched many websites to learn Regular expressions but still searching for a better tutorial than you are at the right place. Regular Expression also known as Regex are a little difficult to write but actually once you…
-

Array in php
What is array in Php? An array is a collection of variable. A simple variable can store a single value whether it is a string type, integer type or boolean type variable. In an array you can store multiple values….
-

How to use wordpress mail function wp_mail()
As we know that we have a mail function mail() in Php which can be used to send plain text mail, HTML mail and mail with attachment. In the Php mail() function it is easy to send plain text mail…
-

How to add featured image support in WordPress theme
By default any Wordpress theme do not have the Featured image support. But any one can add featured image wordpress support in any wordpress theme by including few simple steps which i am going to tell you. These adding this…
-

How to access WordPress database in wordpress plugin or theme
If you are thinking to write a wordpress plugin or wordpress theme and want to access wordpress database in them than this wordpress post can help you in connecting to your wordpress database from your wordpress theme or plugin. I…
-

How to resize an image using Php
Php is a powerful language. If you are thinking whether Php supports image processing like the other language Java, C# etc. than i must tell you, YES! Php have a powerful image processing library called as Php GD Library which…
