corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-28 c2428b3a8f97ff3a5c125944ac2b6aee9b081734
views/Products/show.php
@@ -1,5 +1,9 @@
<body>
    Show the product with ID <?= $id ?> here
    <h1><?= $product["name"] ?></h1>
    <p><?= $product["description"] ?></p>
    <p><a href="/products/<?= $product["id"] ?>/edit" >Edit</a></p>
    <p><a href="/products/<?= $product["id"] ?>/delete" >Delete</a></p>
</body>
</html>