📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
gorevyapscripti.demodesign.com.tr
📝
eklenen-gorevler.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 lang="en"> <?php include ('system/inc/header.php'); ?> <div class="page-body"> <div class="container-fluid" > <div class="page-title"> <div class="row"> </div> </div> </div> <!-- Container-fluid starts--> <div class="container-fluid"> <div class="row "> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Görev Başlığı</th> <th>Kategori</th> <th>Kazanç</th> <th>Kontenjan</th> <th>Cinsiyet</th> <th>Gideriniz</th> </tr> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM gorevler WHERE ekleyenuye = '$userid'"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ $cat = $fetch_r['kategoriid']; $queryCat = mysqli_query($connect, "SELECT * FROM kategoriler WHERE id = '$cat'"); $fetchCat = mysqli_fetch_array($queryCat); $kategoriadi = $fetchCat['kategoriadi']; ?> <tr> <td class="text-primary" > <?php echo $fetch_r['gorevbaslik']; ?> </td> <td class="text-primary" > <span class="badge badge-warning"><?php echo $kategoriadi; ?></span> </td> <td class="text-primary" > <?php echo $fetch_r['gorevkazanc']; ?>₺ </td> <td class="text-primary" > <?php echo $fetch_r['gorevlimit']; ?>/<?php echo $fetch_r['gorevyapan']; ?> </td> <td class="text-primary" > <span class="badge badge-primary"><?php echo $fetch_r['gorevcinsiyet']; ?></span> </td> <td class="text-primary" > <?php echo $fetch_r['gider']; ?>₺ </td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <td>Henüz</td> <th scope="row">Görev</th> <td>Yok</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <!-- Container-fluid Ends--> </div> <?php include ('system/inc/footer.php'); ?> </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