id
のユーザー情報を取得したいとします。 user_id
と同じです
あなたはこのようなことをするかもしれません;
$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);
user_id
がどのようになっているのかわかりませんでした が設定されているので、念のためbindParamを使用しました。