* @param GET person_id */ $person = new Person($_GET['person_id']); $template = new Template(); $template->title = $person->getFullname(); $template->blocks[] = new Block('people/personInfo.inc',array('person'=>$person)); echo $template->render();