Set up multiple virtual hosts on XAMPP for windows
You just have to update the following files: X:\xampp\apache\conf\extra\httpd-vhosts.conf   First of all,  uncomment the following line to enable name based virtual host on your server’s port 80: NameVirtualHost *:80   Then you can start adding your virtual hosts. The following listing is just a sample, I usually do.I am assuming ,we create a project…

Paamayim Nekudotayim Operator
In PHP, the scope resolution operator is also called Paamayim Nekudotayim (Hebrew Language), which means “twice colon” or “double dot twice”.   As you might know PHP 3.0 was created by the Zend team, and it was powered by the Zend Engine 0.5.The name “Paamayim Nekudotayim” was introduced in the Israeli-developed Zend Engine 0.5 used… (1 comment)

Functionality of PHP trim() function
Function: trim — Strip whitespace (or other characters) from the beginning and end of a string.   Syntax: string trim ( string $str [, string $charlist ] )   Arguments: str The string that will be trimmed. charlist Optionally, the stripped characters can also be specified using the charlist parameter.   Argument Options: PHP trim…