getData(); $viewer = new Viewer; echo $viewer->render("products_index.php", [ "products"=> $products ]); } public function show(string $id) { var_dump($id); require "views/products_show.php"; } public function showPage(string $title, string $id, string $page) { echo $title, " ", $id, " ", $page; } }