Discussion board
What is assignment operator ?
By Arun Desai
assignment operator.....
Reply
Post   Reset
Teacher SiliconIndia replied to Arun Desai Wednesday, March 17, 2010
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;