corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-06 7bc6e3058c600c716c0d427208b201eecdbd70ca
index.php
@@ -1,21 +1,13 @@
<?php
    require "model.php";
    $model = new Model;
    $products = $model->getData();
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Products</title>
</head>
<body>
    <h1>Products</h1>
    <?php foreach ($products as $product): ?>
        <h2><?= htmlspecialchars($product["name"]) ?></h2>
        <p><?= htmlspecialchars($product["description"]) ?></p>
    <?php endforeach; ?>
</body>
</html>
require "src/controllers/products.php";
$controller = new Products;
$action = $_GET["action"];
if($action === "index") {
    $controller->index();
}elseif($action === "show") {
    $controller->show();
}