</head>
<body>
    <?php 
$header = new Header();
$header->setKey('Hak');
$header->kokSayfa_header();
?>
<div class="container marketing">
    
<center>
        <h2>Doktorlarımız</h2><hr>
</center><br/>
<div class="row">
    <?php 
$kuldao = new KullaniciGirisDAO();
$resimList = $kuldao->DoktorGoster();
foreach ($resimList as $list) {
    if ($list->getResim() != null) {
        $resim = $list->getResim();
    } else {
        $resim = "dist/resimler/bos-resim/bos-profil.png";
    }
    ?>
    
        <div class="col-lg-4">
            <center><img class="img-thumbnail" src="<?php 
    echo $resim;
    ?>
" alt="" style="width: 100px; height: 150px;"/></center>
            <?php 
    $doktordao = new DoktorDAO();