pageTitle = 'Home'; // include the view require_once('Views/index.phtml'); // create a new student dataset object that we can generate data from $facilityDataSet = new FacilityDataSet(); $view->facilityDataSet = $facilityDataSet->fetchAll(); $view->user = new User(); // send a results count to the view to show how many results were retrieved if (count($view->facilityDataSet) == 0) { $view->dbMessage = "No results"; } else { $view->dbMessage = count($view->facilityDataSet) . " result(s)"; }