Как это:
<?php
$firstname = "john";
$surname = "smith";
echo "Welcome " . ucwords($firstname) . " " . ucwords($surname);
?>
или это:
<?php
$firstname = "john";
$surname = "smith";
$format = "Welcome %s %s";
printf($format, ucwords($firstname), ucwords($surname));
?>