I never heard of or used .= until today....PHP Code:$blah .= "lol<br>";
$blah .= "beans";
echo $blah;
Does it just add to the array so that when you echo the array for me it would display
lol
beans

I never heard of or used .= until today....PHP Code:$blah .= "lol<br>";
$blah .= "beans";
echo $blah;
Does it just add to the array so that when you echo the array for me it would display
lol
beans
All it does is instead of setting a new variable it just adds the new string to the end of the existing variable.
Thats pretty wkd then![]()
Want to hide these adverts? Register an account for free!