📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
gorevyapscripti.demodesign.com.tr
📝
sayitahmin.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-xl-12 col-md-12 notification box-col-12"> <div class="card"> <div class="card-header card-no-border"> <div class="header-top"> <h5 class="m-0">Sayı Tahmin</h5> </div> </div> <div class="card-body pt-0"> <div class="alert alert-success"> <strong>BİLGİ: </strong> 1-10 Arasında bir sayı tahmin edin. Tahmininiz sistemin tahmini ile uyuşursa <?=$oyun1kazanc;?> puan bonus kazanırsınız. <strong> OYUN ÜCRETİ : <?=$oyun1ucret;?> PUAN</strong><br> <strong> BONUS BAKİYENİZ : <?=$bonus;?> PUAN</strong> </div> <br> <label> Tahmininiz : </label> <input id="tahmin" class="form-control" placeholder="1-10 arası"> <br> <button id="btn-tahmin" class="btn btn-primary" style="width:100%"><i class="icofont icofont-dice-alt"></i> TAHMİN ET</button> </div> </div> </div> </div> <font class="text-danger" style="font-weight: bold;margin-top:10px"> TÜM OYUNLAR</font> <div class="row"> <!-- Company Table Card --> <div class="col-lg-12 col-12"> <div class="card "> <div class="card-body"> <div class="row"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>TARİH</th> <th>KAZANÇ</th> </tr> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM sayitahmin WHERE userid = '$userid' ORDER BY id DESC"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ ?> <tr> <td class="text-danger" > <?php echo $fetch_r['date']; ?> </td> <td class="text-danger" > <?php echo $fetch_r['kazanc']; ?> PUAN </td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <td>Henüz</td> <th scope="row">Oyun</th> <td>Yok</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <!--/ Company Table Card --> </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