progetto fatto precedentemente adattato al framework creato con il corso
filippo.bertilotti
2024-06-05 15e03a88fa42f2444138ebc6f171c9a32a3a4238
commit | author | age
15e03a 1 <?php
F 2 namespace App\Controllers;
3 use Framework\Controller;
4 class Home extends Controller {
5     public function index() {
6
7         echo $this->viewer->render("shared/header.php");
8
9         echo $this->viewer->render("Home/index.php");
10     }
11 }