Aggiunta link per articoli carrello

This commit is contained in:
2026-04-02 12:15:52 +02:00
parent f9bff1f235
commit dd5fca46e2
+1 -1
View File
@@ -60,7 +60,7 @@ session_start();
$grand_total += $item_total; $grand_total += $item_total;
?> ?>
<tr> <tr>
<td><?php echo htmlspecialchars($item['name']); ?></td> <td><a href="product.php?id=<?php echo $item['id']; ?>"><?php echo htmlspecialchars($item['name']); ?></a></td>
<td>€<?php echo number_format($item['price'], 2, ',', '.'); ?></td> <td>€<?php echo number_format($item['price'], 2, ',', '.'); ?></td>
<td><?php echo $item['quantity']; ?></td> <td><?php echo $item['quantity']; ?></td>
<td>€<?php echo number_format($item_total, 2, ',', '.'); ?></td> <td>€<?php echo number_format($item_total, 2, ',', '.'); ?></td>