PDO :: FETCH_ASSOC holt nicht alles

Ich habe diese Funktion:

function get_following($user_id) {
 global $conn;
 $stmt = $conn->prepare("SELECT * FROM following WHERE `follower_id`=:user");
 $stmt->bindParam(':user', $user_id, PDO::PARAM_INT);
 $stmt->execute();
 $following =$stmt->fetch(PDO::FETCH_ASSOC);
 return $following;
}

Dasfollowing Tabelle sieht so aus:

|user_id|follower_id|
|   2   |     5     |
|   3   |     5     |
|   4   |     5     |

Jetzt ist das Problem, wenn ich die Funktion tatsächlich aufrufe, wählt sie nur eine der Zeilen aus der Tabelle aus, wobei meine follower_id = 5 ist.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage