<tr>
                        <th>Müşteri Adı</th>
                        <th>Müşteri Soyadı</th>
                        <th>Eposta</th>
                        <th>Telefonu</th>
                        <th>Randevu Tarihi</th>
                        <th>Randevu Saati</th>

                    <th>Doktor</th>
                    
                    </tr>

                    <?php 
    $musteridao = new MusteriDAO();
    $musteriList = $musteridao->gecmisMusteriListesi();
    foreach ($musteriList as $list) {
        ?>
                        <tr>
                            <td><?php 
        echo $list->getAd();
        ?>
</td>
                            <td><?php 
        echo $list->getSoyad();
        ?>
</td>
                            <td><?php 
        echo $list->getEmail();
        ?>
</td>