prepare("UPDATE users SET bio = ?, category = ?, profile_status = 'pending' WHERE id = ?");
$stmt->execute([$bio, $category, $user_id]);
$message = '
Profiliniz başarıyla güncellendi. Başvurunuz incelenmek üzere gönderildi.
';
} catch (PDOException $e) {
$message = 'Profil güncellenirken bir hata oluştu: ' . $e->getMessage() . '
';
}
}
// Fetch current user data
$stmt = $pdo->prepare("SELECT bio, category FROM users WHERE id = ?");
$stmt->execute([$user_id]);
$user = $stmt->fetch(PDO::FETCH_ASSOC);
?>
Başvuru Yap / Profili Düzenle
Influencer profilinizi tamamlamak veya güncellemek için aşağıdaki formu doldurun.