📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
makalesatisscripti.demodesign.com.tr
/
adminp
📝
uyeler.php
← Geri Dön
<?php include ('config.php'); include ('system/inc/sitedata.php'); if (!isset($_SESSION['login'])){ echo " <meta http-equiv='refresh' content='1;URL=index.php'> "; exit(); } ?> <!DOCTYPE html> <html class="loading" lang="en" data-textdirection="ltr"> <!-- BEGIN: Head--> <?php include ('system/inc/header.php'); ?> <!-- BEGIN: Content--> <div class="app-content content"> <div class="content-overlay"></div> <div class="content-wrapper"> <div class="content-header row"> </div> <div class="content-body"> <!-- Dashboard Ecommerce Starts --> <section id="dashboard-ecommerce"> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <center> <h4 class="text-danger"> ÜYELER</h4> <div class="row"> <div class="col-md-12"> <div class="table-responsive"> <input type="text" id="myInput" class="form-control" onkeyup="myFunction()" placeholder="Kullanıcı Adı Girerek Arayın"> <table id="myTable" class="table table-hover"> <thead class="text-warning"> <th>Kullanıcı Adı</th> <th>Ad Soyad</th> <th> Bakiye</th> <th>Email</th> <th>Detaylar</th> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM data_users"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ ?> <tr class="active"> <td><?php echo $fetch_r['username']; ?></td> <td><?php echo $fetch_r['adsoyad']; ?></td> <td><?php echo $fetch_r['bakiye']; ?></td> <td><?php echo $fetch_r['email']; ?></td> <td> <a href="uye-detay.php?id=<?php echo $fetch_r['id']; ?>" class="badge badge-success animalcekimonay">DETAYLAR</a> </td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <th scope="row">0</th> <td>No</td> <td>Referrals</td> <td>Yet</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </center> </div> </div> </div> </div> </section> <!-- Dashboard Ecommerce ends --> </div> </div> </div> <!-- END: Content--> <?php include ('system/inc/footer.php'); ?> <script> function myFunction() { // Declare variables var input, filter, table, tr, td, i, txtValue; input = document.getElementById("myInput"); filter = input.value.toUpperCase(); table = document.getElementById("myTable"); tr = table.getElementsByTagName("tr"); // Loop through all table rows, and hide those who don't match the search query for (i = 0; i < tr.length; i++) { td = tr[i].getElementsByTagName("td")[0]; if (td) { txtValue = td.textContent || td.innerText; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none"; } } } } </script> </body> <!-- END: Body--> </html>
💾 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