corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-13 8fdeaaff9e2e6862cb3c9825522b51453a0340f6
src/App/Controllers/products.php
@@ -9,12 +9,16 @@
        $products = $model->getData();
        $viewer = new Viewer;
        $viewer->render("products_index.php", $products);
        echo $viewer->render("products_index.php", [
            "products"=> $products
        ]);
    }
    public function show(string $id) {
        var_dump($id);
        require "views/products_show.php";
        $viewer = new Viewer;
        echo $viewer->render("Products/show.php", [
            "id"=> $id
        ]);
    }
    public function showPage(string $title, string $id, string $page) {