I have a variable that is being defined as
$var .= \"value\";
How does the use of the dot equal function?
This is for concatenation
$var = "test"; $var .= "value"; echo $var; // this will give you testvalue