Notifications
Stay up to date with your network's latest updates.
= htmlspecialchars($note['content']) ?>
= date('M d, Y • H:i', strtotime($note['created_at'])) ?>
prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$_SESSION['user_id']]); $user = $stmt->fetch(); $platformName = defined('PLATFORM_NAME') ? PLATFORM_NAME : 'Gatsby'; $stmt = db()->prepare("SELECT * FROM notifications WHERE user_id = ? ORDER BY created_at DESC LIMIT 20"); $stmt->execute([$_SESSION['user_id']]); $notifications = $stmt->fetchAll(); ?>
Stay up to date with your network's latest updates.