I've seen some php scripts in HTML where they've taken a HTML page and included a variable by using {$var} directly into the HTML.
<html>
<body>
Hello, {$username}
It's great to have you back
</body>
</html>
Did I miss somthing? How is this accomplished.