In PHP, strings are concatenated together as follows:
$foo = \"Hello\"; $foo .= \" World\";
Here, $foo becomes \"Hello World\"
$foo
I do it this way when convenient: Use an inline command!
echo "The current time is `date`" echo "Current User: `echo $USER`"