I can't gleam this from the PHP manual. How do I combine strings?
Say I have these strings:
$namelast = "Doe"
$namefirst = "John"

and I want to combine them into a string like $name

I don't need for there to be a space, just a result like "DoeJohn"

How do I do that?
_________________________
Matt