[PHP] How do you make a template with variables?

How do you make a template in PHP with variables? I want to put variables in between curly braces. How would I do that?

You know like this…


<?php
  // template code
  // template variables assigned
  // whatever else
?>
 
<html>
<head>
<title>My Site - {TITLE}</title>
{META}
</head>
<body>
 
<table width="{TABLE_WIDTH}">
<tr>
<td>
....

You know what I mean? Thanks a mil if you can help me. Bye!

~Ron