corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-07 c958d08027b1f7735a179da1c15c95e49644a8ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
 
class Products {
    public function index() {
        require "src/models/product.php";
    
        $model = new Product;
        $products = $model->getData();
 
        require "views/products_index.php";
    }
 
    public function show() {
        require "views/products_show.php";
    }
}