When my server updated to PHP version 5.4.24, I've encountered some errors on my script using this code
.=
sample code are
$test .= 'hello';
$test .= 'to';
$test .= 'all';
echo $test;
I got undefined variable test. Everything is working when my server PHP version is 5.2.10
Is .=
still supported on PHP version 5.4.24
Is there any alternative code for this? Or how can I fix this?