query("SELECT * FROM blogs ORDER BY id DESC");
$has_blogs = false;
while ($row = $stmt->fetch()) {
$has_blogs = true;
$display_img = (!empty($row['image_path']) && file_exists($row['image_path'])) ? $row['image_path'] : 'assets/img/home4/blog-card-img1.jpg';
// Calculate Day and Month separately from the database timestamp configuration
$day_string = date('d', strtotime($row['publish_date']));
$month_string = date('F', strtotime($row['publish_date']));
?>
No blog entries published yet.
';
}
} catch (PDOException $e) {
error_log("Blog dynamic listing loop processing failure: " . $e->getMessage());
echo '
Error retrieving active blog entries.