Файловый менеджер - Редактировать - /home/gqdcvggs/.trash/database-directory.php.3
Назад
<?php require_once 'db.php'; $stmt = $pdo->prepare("SELECT * FROM dossiers WHERE statut = 'ouvert' ORDER BY date_ouverture DESC"); $stmt->execute(); $dossiers = $stmt->fetchAll(PDO::FETCH_ASSOC); ?> <!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>The Lord Court</title> <script src="https://cdn.tailwindcss.com"></script> <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400&display=swap" rel="stylesheet"> <style> .playfair { font-family: 'Playfair Display', serif; } .inter-light { font-family: 'Inter', sans-serif; font-weight: 300; } </style> </head> <body class="bg-white"> <header class="bg-white border-b border-black fixed top-0 left-0 right-0 z-50"> <div class="max-w-7xl mx-auto px-8 py-6"> <h1 class="playfair text-3xl text-black">THE LORD COURT</h1> </div> </header> <main class="pt-24"> <section class="max-w-7xl mx-auto px-8 py-20"> <div class="max-w-2xl"> <h2 class="playfair text-5xl mb-6 text-black">Currently open files</h2> <p class="inter-light text-xl text-gray-600 leading-relaxed"> Consult the list of cases currently being handled by the TLC </p> </div> </section> <section class="max-w-7xl mx-auto px-8 pb-20"> <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-1"> <?php foreach($dossiers as $dossier): ?> <div class="group bg-white border border-black p-10 hover:bg-black hover:text-white transition-all duration-300 cursor-pointer relative" onclick="window.location.href='more-info.php?titre=<?php echo urlencode($dossier['titre']); ?>'"> <h3 class="playfair text-2xl mb-4 group-hover:text-white"><?php echo htmlspecialchars($dossier['titre']); ?></h3> <div class="inter-light text-gray-600 group-hover:text-gray-300 mb-4"> <p class="mb-2">Sectors: <?php echo htmlspecialchars($dossier['secteurs']); ?></p> <p class="mb-2">Opened on: <?php echo date('d/m/Y', strtotime($dossier['date_ouverture'])); ?></p> </div> <p class="inter-light text-gray-600 group-hover:text-gray-300 mb-16"> <?php echo htmlspecialchars(substr($dossier['description'], 0, 100)) . '...'; ?> </p> <div class="absolute bottom-10 right-10 w-8 h-8 border border-black group-hover:border-white rounded-full flex items-center justify-center"> <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M9 5l7 7-7 7"></path> </svg> </div> </div> <?php endforeach; ?> </div> </section> </main> </body> </html>
| ver. 1.6 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка