prepare("DELETE FROM followers WHERE following_id = :following_id AND follower_id = :follower_id"); $stmt->execute(['follower_id' => $follower_id, 'following_id' => $following_id]); header("location: ../profile.php?user=" . $username); } catch (PDOException $e) { echo $e->getMessage(); }