I often see programmers on Youtube concatenating like: .$example. Small question, I would like to know what the difference is between .$name. and "$name" because they give the same output.
<?php
$name = 'Todd';
echo "Hello $name!";
echo "Hello " .$name. "!";
?>