">
<?php$str = "Interview";$str .= "Mania";echo "$str";?>
.= is a concatenation-assignment. $str equals its current value concatenated with “get”.
Previous Question Next Question
Your comments will be displayed only after manual approval.