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