Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 221 Bytes

File metadata and controls

12 lines (8 loc) · 221 Bytes

Simple PHP partial loader class!

$root =  $_SERVER['DOCUMENT_ROOT'];
$header = "header.php";
$footer = "footer.php";

$views = new \PPV\Views($root, $header, $footer);

$views->load('homepage.php');