$sorgu=$db->prepare("SELECT * FROM Uyeler"); bu yanlış.
$sorgu=$db->prepare("SELECT * FROM Uyeler where uye_id=$id"); şeklinde olmalı.
get ile üye id çağrılmalı
Sorunu çözdüm
<button type="submit" data-toggle="modal" value="<?php echo $UyeBilgisi['Uye_Kimlik']?>" data-target="#UyeDuzenle<?php echo $UyeBilgisi['Uye_Kimlik']?>" class="btn btn-success btn-sm btn-icon-split">
<span class="icon text-white-60">
<i class="fas fa-edit"></i>
</span>
</button><?php
$sorgu=$db->prepare("SELECT * FROM Uyeler");
$sorgu->execute();
while ($UyeBilgisi=$sorgu->fetch(PDO::FETCH_ASSOC)) {
?>
<div class="modal fade" id="UyeDuzenle<?php echo $UyeBilgisi['Uye_Kimlik']?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Üye Güncelle</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>