I do:
<?php echo "Hello ".$name; ?>
Although I have been breaking out of PHP, in large pages where there's a lot of HTML and not much PHP:
<?php
if($dogreet)
{
?>Hello <?php
echo $name;
}
?>
Which is faster to render, although can lead to some illegibility in the code. Helpfully though, in DWMX, each little PHP block has its own icon, and in the split screen view you can bounce from code section to code section by clicking the icons. I find this helps me to control my code and my layout.
It's working for me at the moment, but I will probably change it at some point!