Font-size: A A A
Assignment.
The assignment operator assigns a value to a variable. It is not to be mixed up with the operator for equality, "==".
<?php $var = "php"; print $var; ?>
php
A variable is assigned a value and then printed.