O

Oğuzhan

xfox.net/profile.php?id=1
Son Görülme
22.12.2025 15:34
Künye
Ad Soyad : Oğuzhan
Üyelik Tarihi : 18/12/2025
Profil Mesajları
Makaleler
Diğer

Henüz mesaj yok.

The Global Registry: Understanding Domain Whois and Its Critical Role in the Digital Ecosystem

The internet's structure relies heavily on the system of domain names, which serve as unique addresses and digital identities for millions of websites worldwide...

Kullanıcı hakkında ek bilgiler burada yer alabilir.

/** * Profile Sayfası - R10.Net Style */ require_once __DIR__ . '/config/security.php'; require_once __DIR__ . '/classes/Session.php'; require_once __DIR__ . '/classes/User.php'; require_once __DIR__ . '/classes/Post.php'; require_once __DIR__ . '/classes/Profile.php'; $session = new Session(); $userClass = new User(); $postClass = new Post(); $profileClass = new Profile(); // Görüntülenen kullanıcıyı belirle $view_user_id = isset($_GET['id']) ? (int)$_GET['id'] : $session->getUserId(); if (!$view_user_id) { header('Location: /login.php'); exit; } $view_user = $userClass->getUserById($view_user_id); if (!$view_user) { die("User not found."); } $is_own_profile = ($view_user_id === $session->getUserId()); $page_title = escape($view_user['name']) . ' - Profile'; require_once __DIR__ . '/includes/header.php'; // Verileri hazırla $messages = $profileClass->getMessages($view_user_id); $posts = $postClass->getAll(5, 0); // TODO: Filter by author if needed, but here we just show latest for now // Actually, let's filter by author $stmt = getDB()->prepare("SELECT * FROM blog_posts WHERE author_id = ? ORDER BY created_at DESC LIMIT 5"); $stmt->execute([$view_user_id]); $user_posts = $stmt->fetchAll(); ?>
O

Oğuzhan

xfox.net/profile.php?id=1
Son Görülme
22.12.2025 15:34
Künye
Ad Soyad : Oğuzhan
Üyelik Tarihi : 18/12/2025
Profil Mesajları
Makaleler
Diğer

Henüz mesaj yok.

The Global Registry: Understanding Domain Whois and Its Critical Role in the Digital Ecosystem

The internet's structure relies heavily on the system of domain names, which serve as unique addresses and digital identities for millions of websites worldwide...

Kullanıcı hakkında ek bilgiler burada yer alabilir.