This commit is contained in:
2025-10-25 17:21:24 +02:00
parent b95935da80
commit 4fc2516bbc

17
index.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
require_once 'php/pdo.php';
$sql = "SELECT * FROM articles ORDER BY date_creation DESC";
$stmt = $pdo->prepare($sql);
$stmt->execute();
?>
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Blog</title>
</head>
<body>
</body>
</html>