getData(); $viewer = new Viewer; $viewer->render("products_index.php", $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; } }