What is the difference between = , == and === ?
All of the above are called operators. Operator is a string which instructs PHP to perform given action. = is called assignment operator. It is used for assign value to a variable. It will assign value left to the variable. == is called comparison operator. Double equal (==) is used to compare operands on both… Read More »