Well, the bottom line is, you're still mixing your HTML with your code. If you wanted to change that "p" tag to a "div", you'd have to wander through your code just to do it. Think about what your method offers:
- mixes code with HTML
- adds overhead to parse all the requests
- introduces a new "language" over HTML
In essence, while the approach may be different, it has the same issues the template languages you are trying to get away from has.
Wouldn't it be easier, if you're working alone (or in a group), to just let PHP be the template language?
$page = new Page('test.html');
$page->load($data);
$page->render();
and in your test.html "template"
<html>
<head>
<title><?php echo $title ?></title>
</head>
<body>
<p><?php echo $hello ?></p>
</body>
</html>
What other template engines do really is formalize the above code. but if you stick to basics (echoing variables, basic conditionals, looping), you essentially have all the power of a template language, but in familiar PHP, and with no performance overhead.
Plus, unlike your example, you can alter the HTML (i know you didn't want to touch it, but changing a "p" to a "div" in code really isn't that different from change <p> to <div>), without having to delve into the code.
