mirror of
https://codeberg.org/ThisIsMiseryy/techstore
synced 2026-05-14 14:52:04 +00:00
55 lines
2.7 KiB
PHP
55 lines
2.7 KiB
PHP
<?php
|
|
session_start();
|
|
include 'db_conf.php';
|
|
|
|
// Query per ottenere tutti i prodotti
|
|
$sql = "SELECT p.ProductID, p.ProductName, c.Name AS 'CategoryName', p.Description, p.Price, p.StockQuantity, p.ImagePath FROM Products p JOIN Categories c ON p.CategoryID=c.CategoryID";
|
|
$result = $conn->query($sql);
|
|
|
|
if ($result === false) {
|
|
die("Errore nella query: " . $conn->error);
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TechStore - Prodotti</title>
|
|
<link rel="stylesheet" href="assets/style.css">
|
|
<script src="assets/js/cart.js"></script>
|
|
</head>
|
|
<body>
|
|
<header style="display: flex; justify-content: space-between; align-items: center; padding: 10px; background-color: #f2f2f2; border-bottom: 1px solid #ddd;">
|
|
<div id="logo"><img src="img/logo.png" alt="Logo TechStore" height="32px"></div>
|
|
<div>
|
|
<a href="cart.php"><button style="margin-left: 10px; padding: 8px 16px; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer;">Carrello</button></a>
|
|
<?php if (isset($_SESSION['user'])): ?>
|
|
<a href="logout.php"><button style="margin-left: 10px; padding: 8px 16px; background-color: #dc3545; color: white; border: none; border-radius: 4px; cursor: pointer;">Logout</button></a>
|
|
<span style="margin-left: 10px;">Benvenuto, <?php echo htmlspecialchars($_SESSION['user']); ?></span>
|
|
<?php else: ?>
|
|
<a href="login.php"><button style="margin-left: 10px; padding: 8px 16px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer;">Accesso</button></a>
|
|
<?php endif; ?>
|
|
</div>
|
|
</header>
|
|
|
|
<?php if ($result->num_rows > 0): ?>
|
|
<div class="products-grid">
|
|
<?php while ($row = $result->fetch_assoc()): ?>
|
|
<div class="product-card">
|
|
<a href="product.php?id=<?php echo $row['ProductID']; ?>"><div class="img-square"><img src="img/<?php echo htmlspecialchars($row['ImagePath']); ?>" alt="Immagine prodotto"></div></a>
|
|
<h3><?php echo "<a href='product.php?id=" . $row['ProductID'] . "'>" . htmlspecialchars($row['ProductName']) . "</a>"; ?></h3>
|
|
<p><?php echo htmlspecialchars($row['Price']); ?>€</p>
|
|
<button onclick="addToCart(<?php echo $row['ProductID']; ?>, '<?php echo htmlspecialchars($row['ProductName']); ?>', <?php echo $row['Price']; ?>)">Aggiungi al carrello</button>
|
|
</div>
|
|
<?php endwhile; ?>
|
|
</div>
|
|
<?php else: ?>
|
|
<p>Nessun prodotto trovato.</p>
|
|
<?php endif; ?>
|
|
|
|
<?php $conn->close(); ?>
|
|
</body>
|
|
</html>
|