corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-24 e66fc13048b8a04c748c34711629f4a3bd50c71f
1
2
3
4
5
6
7
8
9
10
11
<body>
    <h1>Delete Product</h1>
 
    <form method="post" action="/products/<?= $product["id"]?>/delete">
        <p>Delete this product?</p>
        <button>Yes</button>
    </form>
 
    <p><a href="/products/<?= $product["id"] ?>/show" >Cancel</a></p>
</body>
</html>