Forum : What is assignment operator ?
Brief description  about Online courses   join in Online courses
View Arun  Desai 's Profile

What is assignment operator ?

assignment operator.....
Asked by Arun Desai | Mar 17, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi Arun,
Assignment operators are used to set a variable equal to a value or set a variable to another variable's value. Such an assignment of value is done with the "=", or equal character. Example:
$my_var = 100;
$another_var = $my_var;
Mar 17, 2010