What is the period "." in php?
I've seen it in quite a few example statements, but I can't figure what it means. Is it a comma, or newline, or what.
An example bit of code:
function add_some_extra(&$string)
{
$string .= 'and something extra.';
........... other stuff here....
But what is .= ?
Thanks!