I use php templates a lot and have a quick question. When you use php templates you have your php file we will call somefile.php and your template file we will call templatefile.html (or tpl). My question is, since you can't have php in your templatefile.html is there some way to redirect a user? What I mean is right now if you go to templatefile.html you will see the html with my tempate tags. So instead of seeing
Hello today's date is Tuesday January 13, 2009.
you would see
Hello today's date is {date}
Is there some way to redirect with HTML or something.