Geizkragen/compcards.php
2026-01-28 16:22:27 +01:00

45 lines
1.3 KiB
PHP

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/compcard.css">
</head>
<?php
$activeCategory = $_GET['category'] ?? 'all';
?>
<?php if ($activeCategory === 'iphone' || $activeCategory === 'all'): ?>
<section class="product-section">
<h2>iPhone</h2>
<div class="product-scroll">
<div class="product-card">...</div>
<div class="product-card">...</div>
<div class="product-card">...</div>
</div>
</section>
<?php endif; ?>
<?php if ($activeCategory === 'ipad' || $activeCategory === 'all'): ?>
<section class="product-section">
<h2>iPad</h2>
<div class="product-scroll">
<div class="product-card">...</div>
<div class="product-card">...</div>
<div class="product-card">...</div>
</div>
</section>
<?php endif; ?>
<?php if ($activeCategory === 'macbook' || $activeCategory === 'all'): ?>
<section class="product-section">
<h2>MacBook</h2>
<div class="product-scroll">
<div class="product-card">...</div>
<div class="product-card">...</div>
<div class="product-card">...</div>
</div>
</section>
<?php endif; ?>