corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-24 ebbcca0ca9512d4c8d2454240cef35fb303ca2ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<body>
    <h1>Products</h1>
 
    <a href="/products/new">New Product</a>
 
    <?php foreach ($products as $product): ?>
        <h2>
            <a href="/products/<?= $product["id"] ?>/show">
                <?= htmlspecialchars($product["name"]) ?>
            </a>
        </h2>
    <?php endforeach; ?>
</body>
</html>