hanze/lollipop

controller.php in views
Repositories | Summary | Log | Files

controller.php (292B) download


 1<?php
 2include "Template.php";
 3$uri = "template_test.html";
 4$data = array(	"<p> <h1>Het werkt</h1> </p>",
 5                "<p> <h1>Het werkt</h1> </p>",
 6                "<p> <h1>Het werkt</h1> </p>");
 7
 8$template = new Lollipop\Template;
 9$html = $template->template($uri, $data);
10echo $html;
11?>