I'm not sure what to do, but I do not know how to do it.
I'm not sure what to do, but I do not know how to do it.
String Concatenation
Same as:
$main = $main . '...';
Ex:
$main = 'teste';
$main .= '1';
$main .= '2';
$main .= '3';
echo $main; //irá imprimir 'teste123'