📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
etut-dersane.demodesign.com.tr
/
yonetim
📝
basvuru.php
← Geri Dön
<!-- HEADER --> <?php include 'inc/header.php' ?> <!-- HEADER --> <body> <div class="container-scroller"> <!-- PROFİL --> <?php include 'inc/navbar.php' ?> <!-- PROFİL --> <!-- partial --> <div class="container-fluid page-body-wrapper"> <!-- MENU --> <?php include 'inc/menu.php' ?> <!-- MENU --> <!-- partial --> <!-- Start content --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <div class="page-title mt-0 mb-0"> <h3>Yönetim Paneli</h3> <div class="crumbs"> <ul id="breadcrumbs" class="breadcrumb"> <li><a href="index.php"><i class="icon-home menu-icon"></i></a></li> <li class="active"><a href="#">Yönetim Paneli</a></li> </ul> </div> </div> </div> <!-- İÇERİK BURAYA --> <div class="card"> <?php if ($_GET['sonuc']=="ok") {?> <div class="alert alert-success"> <strong>BAŞARILI!</strong> İşlem Başarılı </div> <?php echo '<meta http-equiv="refresh" content="1; url=foto-listele.php">'; }elseif ($_GET['sonuc']=="no") {?> <div class="alert alert-danger"> <strong>BAŞARISIZ!</strong> İşlem Başarısız </div> <?php } ?> <div class="card-body"> <div class="row mb-3"> <div class="col-lg-12"> </div> </div> <?php $dokuman=$db->prepare("SELECT * FROM ik"); $dokuman->execute(); ?> <div class="row"> <div class="col-12"> <div class="table-responsive"> <table id="order-listingg" class="table table-bordered table-hover"> <thead class="headbg"> <tr> <th class="noshort" style="width:20px;" data-toggle="tooltip" data-placement="top" title="Tümünü Seç"> <p>#</p> <label for="checkbox-4" class="checkbox-custom-label mb-0"><span class="checktext"></span></label> </th> <th>Gönderen</th> <th style="width:150px;">Telefon</th> <th style="width:150px;">E-Posta</th> <th style="width:150px;">Tarih</th> <th style="width:115px;">İşlem</th> </tr> </thead> <tbody id="sortable" class="ui-sortable"> <?php while ($dokumantake=$dokuman->fetch(PDO::FETCH_ASSOC)) {?> <tr id="item-1" role="row" class="odd"> <td><div class="form-check mb-0 mt-0"><label class="form-check-label"><?php echo $dokumantake['id'] ?><i class="input-helper"></i></label></div></td> <td class=" secili"><?php echo $dokumantake['isim'] ?></td> <td class=" secili"><?php echo $dokumantake['telefon'] ?></td> <td class=" secili"><?php echo $dokumantake['email'] ?></td> <td class=" secili"><?php echo $dokumantake['tarih'] ?></td> <td class=" text-center"> <button data-toggle="modal" data-target="#exampleModal<?php echo $dokumantake['id']; ?>" class="btn btn-inverse-primary btn-sm" title="Düzenle"><i class="ti-eye"></i></button> <a href="system/islem.php?id=<?php echo $dokumantake['id']; ?>&basvurusil=ok" class="btn btn-inverse-danger btn-sm popconfirm" title="" data-original-title="Başvuruyu Sil"><i class="ti-trash"></i></a></td> </tr> <!-- Modal --> <div class="modal fade" id="exampleModal<?php echo $dokumantake['id'] ?>" 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"><?php echo $dokumantake['veli_adi'] ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="form-group row ik"> <label class="col-md-3 col-form-label p-1">Başvuru Tarihi</label> <div class="col-md-9 pt-1"> <?php echo $dokumantake['tarih'] ?> </div> </div> <div class="form-group row ik"> <label class="col-md-3 col-form-label p-1">Adı Soyadı</label> <div class="col-md-9 pt-1"> <?php echo $dokumantake['isim'] ?> </div> </div> <div class="form-group row ik"> <label class="col-md-3 col-form-label p-1">Cep Telefonu</label> <div class="col-md-9 pt-1"> <?php echo $dokumantake['telefon'] ?> </div> </div> <div class="form-group row ik"> <label class="col-md-3 col-form-label p-1">E-Posta</label> <div class="col-md-9 pt-1"> <?php echo $dokumantake['email'] ?> </div> </div> <div class="form-group row ik"> <label class="col-md-3 col-form-label p-1">CV Dosyası</label> <div class="col-md-9 pt-1"> <a target="_blank" href="../tema/g<?php echo $dokumantake['resim'] ?>">İndirmek için tıklayın.</a> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Kapat</button> </div> </div> </div> </div> <!-- Button trigger modal --> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <!-- FOOTER --> <?php include 'inc/footer.php' ?> <!-- FOOTER -->
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula