corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-13 bf18c77ec2b3dc1ffdda922e6065108ca5c126eb
1
2
3
4
5
6
7
<?php
namespace App\Controllers;
class Home {
    public function index() {
        require "views/home_index.php";
    }
}