I've build a simple templating engine for a friend, however i have a problem which i think is a simple one
the script looks for these values in a template
$find = array("{$body}", "{$page_title}");
and replaces them with some other values.
However because they look like php variables I'm getting all sorts of errors and them being undefined.
Any solutions?