$ssn1='213';
$ssn2='23';
$ssn3='0346';
echo $ssn1 . $ssn2 . $ssn3;
this code works, I just ran it.
NOTE: I'm using single quotes, don't use parens for ssn's because if a number starts with a 0, it'll get eaten because it's being stored as an int instead of a string.
Try out my code with:
$ssn3=(0346);
and you'll see what I mean.