📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
gorevyapscriptiv2.demodesign.com.tr
📝
eklenengorevler.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=login.php'> "; exit(); } ?> <!DOCTYPE html> <html lang="en"> <?php include ('system/inc/header.php'); ?> <!--********************************** Content body start ***********************************--> <div class="content-body"> <div class="container-fluid"> <div class="row"> <div class="col-xl-12 col-xxl-12 col-lg-12 col-12"> <div class="card"> <div class="card-header border-0 pb-0"> <h4 class="card-title">Eklediğiniz Görevler</h4> </div> <div class="card-body"> <div class="table-responsive"> <table id="myTabless" class="table table-hover mb-0"> <thead> <tr> <th>Başlık</th> <th>Kontenjan</th> <th>Toplam Fiyat</th> <th>Komisyonlu Fiyat</th> </tr> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM gorevler WHERE userid = $userid ORDER BY id DESC"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ ?> <tr class="active"> <td><?php echo $fetch_r['gorevbaslik']; ?></td> <td><?php echo $fetch_r['gorevkisi']; ?>/<?php echo $fetch_r['gorevyapan']; ?></td> <td><?php echo $fetch_r['toplam']; ?> TL</td> <td><?php echo $fetch_r['toplamkomisyon']; ?> TL</td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <th scope="row">0</th> <td>Kayıt</td> <td>Yok</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <!--********************************** Content body end ***********************************--> <?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