If you are a professional web developer or professional web designer, there are some really great iPhone and Android apps that you can put to use with your mobile broadband. Here is a list of some of the greatest apps for your phone. Professional Web Design is something that is really needed to make your [...]
All Posts by : "Avinash"
What is Removed From PHP 6?
In this post I am going to show you which features are removed from major release of the PHP which is PHP 6. These features are removed based on various reasons like security, incompatibility, performance, etc..
Get Gravatar Image with PHP
Gravatar stands for Globally Recognized Avatar. This is the very well known service to show your avatar globally. You can get Gravatar using an email address. In this post I am going to show you how to show the gravatar using an email address. I am going to cover this post with PHP. Get Prepared [...]
Simple Image Placeholder Service
Today I have found a very nice site with very useful service. They are providing dummy image placeholder for web page. So i thought to share with all. The site is . Earlier I have posted about generating dynamic dummy images. This site gives same functionality with some better features. Lets see how this works. [...]
Sleep Process Thread in MySQL
While working with the MySQL Administrator, You can see the list of all connections. Have you checked the different status of the each connections?
Edit Hosts File
This post is going to show about editing the hosts file. So first of all what is hosts file? What is Hosts File? Hosts file is simple file which maps the host name and IP address. But this mapping is applicable for that machine only. Where Can I Find This File? Location of this file [...]
Class Functions in PHP
Now in this post I am going to explain various PHP functions which will help us to get the information about the class. We can use this function in class or with the object of the class. From the term “information about the class“, I mean about the name of the class, name of the [...]
Trait in PHP 5.4
What is trait? Trait is the new concept introduced in PHP 5.4. Which likes to remove the limitation of the multiple inheritance in single inheritance language PHP. Before PHP 5.4, PHP support single inheritance and multiple interface but trait is going to remove the limitation of not having multiple inheritance. Why Use trait? The main [...]
Type Hinting in PHP
With Type Hinting we can force the parameter of the function to be object or an array. Type Hinting was introduced in PHP 5. Also we can allow NULL also along with object or array. For forcing the parameter to be an object we have to specifying the name of the class in the function [...]