Ich nehme an, Sie möchten die Benutzerinformationen erhalten, wo ihre id
ist ist dasselbe wie user_id
Sie könnten so etwas tun;
$query = $db->prepare('SELECT * FROM table WHERE id=:id');
//using bindParam helps prevent SQL Injection
$query->bindParam(':id', $_SESSION['user_id']);
$query->execute();
//$results is now an associative array with the result
$result = $query->fetch(PDO::FETCH_ASSOC);
Ich war mir nicht sicher, wie user_id
ist gesetzt, also habe ich nur für alle Fälle bindParam verwendet.