I did, i wrapped it in php and followed the url
Some of the things didn't make sense to me. i thought this would just require an if statement and a _GET to see what i put after the URL, and include the corresponding file. so if the URL ended ?lessonq1 then the second include would bring in the file named lesson1, which is an html template
<?php
if (isset($_GET['file']) && $_GET['file']<>'')
{
$file = strtolower($_GET['file']);
if (array_key_exists($file,$files_ar))
$include_name = $files_ar[$file];
else
die("Invalid url value");
include('header.php');
include($include_name);
include('footer.php');
exit();
}
else
die("Missing url value")
exit();
?>