Possible Duplicate:
Reference - What does this symbol mean in PHP?
Consider this code example:
{
$n1 = ucfirst(strtolower($n1));
$n2 = ucfirst(strtolower($n2));
$n3 = ucfirst(strtolower($n3));
return $n1 . " " . $n2 . " " . $n3;
}
My book says the code will display:
William Henry Gates (each name is the value of the variables)
So what do the .
in between the quotes and the next variable do? I must have read over it, and I look back for it, but I couldn't find it.