1$variables = array();
2
3$variables['name'] = "Robert";
4$variables['age'] = "30";
5
6$template = file_get_contents("template.html");
7
8foreach($variables as $key => $value)
9{
10 $template = str_replace('{{ '.$key.' }}', $value, $template);
11}
12
13echo $template;
14